设置网格背景C#(WPF)

时间:2019-04-09 11:24:56

标签: c# wpf

我想使用c#设置网格的背景。但是,当我运行程序时,会出现一些错误。 这是我使用的代码

 ImageBrush brush = new ImageBrush();
        BitmapImage bitmapImage = new BitmapImage(new Uri(@"Assets\Pictures\caisse.jpg", UriKind.Relative));            
        brush.ImageSource = bitmapImage;
        brush.Stretch = Stretch.UniformToFill;
        Background = brush;

这是我得到的错误 System.IO.DirectoryNotFoundException :“找不到路径的一部分”

0 个答案:

没有答案