码迷,mamicode.com
首页 > Windows程序 > 详细

代码方式给控件添加背景图片(WPF)

时间:2015-04-16 16:59:07      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

      wpf中常常需要给控件添加背景图片,下边以wrapPanel为例,使用代码添加背景图片

         WrapPanel xwraPanel = new WrapPanel();

            ImageBrush ximgBrush = new ImageBrush();

           Uri xuri = new Uri("pack://application:,,,/Images/JXimgs/MeterLayout.png", UriKind.Absolute); //注意这个的写法      

     ximgBrush.ImageSource = new BitmapImage(xuri);        

     xwraPanel.Background = ximgBrush;

 

另外我们在项目中可以设置控件的BackGround=“Transparent” 使本控件透明,而显示父容器的背景色

代码方式给控件添加背景图片(WPF)

标签:

原文地址:http://www.cnblogs.com/hanjiaxu/p/4432335.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!