WPF C# 图像源
Posted
技术标签:
【中文标题】WPF C# 图像源【英文标题】:WPF C# Image Source 【发布时间】:2011-07-06 09:51:34 【问题描述】:在 XAML 中,我学会了使用以下代码指定图像源:
<Image Source="/WaivePadBankAnim;component/Images/Consumer/search_button_full.png" />
我将如何在 C# .cs 中做到这一点?
【问题讨论】:
【参考方案1】:试试这个
Image image = new Image();
image.UriSource = new Uri("/WaivePadBankAnim;component/Images/Consumer/search_button_full.png")
Try this
Adding WPF Controls Progrrammatically
【讨论】:
【参考方案2】:我在 Windows phone 8 上工作,我用过这个。
OrderImage1.Source = new BitmapImage(new Uri("///Assets/images/order_bread.png"));
【讨论】:
【参考方案3】:Image img = new Image();
img.Source = new Uri("<your path here>");
我希望这会有所帮助。
【讨论】:
【参考方案4】:请检查此
只需使用“ImageSourceConverter”类
img1.Source = (ImageSource)new ImageSourceConverter().ConvertFromString("/Assets/check.png");
【讨论】:
以上是关于WPF C# 图像源的主要内容,如果未能解决你的问题,请参考以下文章
如果使用 javascript 或 jQuery 找不到源图像,如何显示图像标题
获取 HTML 并使用 rasterizehtml 在画布中生成图像 - 动态源图像