wpf动态画布背景图片

时间:2012-04-03 03:16:12

标签: c# wpf windows canvas

在我的应用程序中,我希望用户将图像加载为画布背景。如何将图像分配到画布背景?

1 个答案:

答案 0 :(得分:13)

使用ImageBrush设置Canvas.Background属性

ImageBrush ib = new ImageBrush();
ib.ImageSource = new BitmapImage(new Uri(@"sampleImages\berries.jpg", UriKind.Relative));
mycanvas.Background = ib;