标签:style blog io color ar os 使用 sp strong
一、路径格式定义<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);
标签:style blog io color ar os 使用 sp strong
原文地址:http://blog.csdn.net/gjysk/article/details/40717397