标签:
<Image x:Name="ImageBg" Source="pack://application:,,,/Resources/Images/Hydrangeas.jpg" Stretch="Fill" />
<Image x:Name="ImageBg" Source="Resources/Images/Hydrangeas.jpg" Stretch="Fill" />
// 相对路径。 Uri imageUri = new Uri(@"Resources/Images/Hydrangeas.jpg", UriKind.Relative); this.ImageBg.Source = new BitmapImage(imageUri); // 绝对路径。 Uri imageUri = new Uri(@"pack://application:,,,/Resources/Images/Hydrangeas.jpg", UriKind.Absolute); this.ImageBg.Source = new BitmapImage(imageUri);
3、在C#代码中完整写法代表绝对路径。UriKind必须为Absolute,并且代表根文件夹的/不能够省略。
4、路径能够使用类似于DOS的语法。
标签:
原文地址:http://www.cnblogs.com/bhlsheji/p/5137068.html