前端之家收集整理的这篇文章主要介绍了
c# – wpf动态画布背景图片,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的应用程序中,我希望
用户将图像加载为画布背景.如何将图像分配到画布背景?
使用
ImageBrush设置Canvas.Background
属性
ImageBrush ib = new ImageBrush();
ib.ImageSource = new BitmapImage(new Uri(@"sampleImages\berries.jpg",UriKind.Relative));
mycanvas.Background = ib;
原文链接:https://www.f2er.com/csharp/93667.html