文字列パスに背景を設定するにはどうすればよいですか?
canvas1.Background = "/path/";
助けてください!!!ありがとう :)
ImageBrushクラスを探していると思います:
ImageBrush imageBrush = new ImageBrush();
imageBrush.ImageSource = new BitmapImage(new Uri(@"/path/", UriKind.Relative));
canvas1.Background = imageBrush;
これを使って
mycanvas.Background = new ImageBrush()
{ ImageSource = new BitmapImage((new Uri(mypath, UriKind.Absolute))) };