wpf 窗体添加背景图片

方法一:
xaml中:
<控件>   
<控件.Background>
<ImageBrush ImageSource="/WpfApplication1;component/Images/xxx.jpg"/>
</控件.Background>
</控件>   

方法二:
xxxx.cs中:
ImageBrush b3 = new ImageBrush();
b3.ImageSource = new BitmapImage(new Uri(path, UriKind.RelativeOrAbsolute));
this.Background = b3;

wpf 窗体添加背景图片

上一篇:C#中反射的使用(How to use reflect in CSharp)(1)


下一篇:C#高级编程(第9版) -C#5.0&.Net4.5.1 书上的示例代码下载链接