通过以下方式设置Image的Source属性时,图片是从/Images/down.png
拍摄的。
我将如何通过编程方式完成同一件事?
<Image x:Name="myImg" Source="/MyProject;component/Images/down.png" />
由于Image.Source属性不是字符串类型,因此以下内容将不起作用。
myImg.Source = "/MyProject;component/Images/down.png";
最佳答案
试试这个:
BitmapImage image = new BitmapImage(new Uri("/MyProject;component/Images/down.png", UriKind.Relative));
关于c# - 如何以编程方式设置图像源,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6503424/