欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

wpf 控件添加背景图片

程序员文章站 2024-01-18 20:46:52
...

方法一,xaml中:

<控件>   
    <控件.Background>
        <ImageBrush ImageSource="/WpfApplication1;component/Images/xxx.jpg"/>
    </控件.Background>
</控件>      

 

方法二,cs中:

ImageBrush bg = new ImageBrush();
bg.ImageSource = new BitmapImage(new Uri(path, UriKind.RelativeOrAbsolute));
this.Background = bg;