WPF 调用资源图片

2021-07-15 03:14

阅读:430

标签:getc   图片   技术   开发   api   rect   资源   path   inf   

原文:WPF 调用资源图片

     最近做的wpf项目中,在开发的时候,把图片放到了bin下面,采用了imagePath =System.IO.Directory.GetCurrentDirectory()+"/images/starShow.jpg";获得图片是可以的,可是发布之后却获取不到图片,这让我很纠结,后来通过把图片添加到了资源中,然后调用资源即可解决了问题

    技术分享图片

      imagePath = "pack://application:,,,/Financial;component/Properties/../images/star/starShow.jpg";

      imageBrush.ImageSource = new BitmapImage(new Uri(imagePath, UriKind.RelativeOrAbsolute));
      imageBrush.Stretch = Stretch.Fill;//设置图像的显示格式 
      btn.Background = imageBrush;

WPF 调用资源图片

标签:getc   图片   技术   开发   api   rect   资源   path   inf   

原文地址:https://www.cnblogs.com/lonelyxmas/p/9525284.html


评论


亲,登录后才可以留言!