我想使用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 :“找不到路径的一部分”