是否可以设置InkCanvas中MemoryStream中图像的背景?
我现在正在做的是:
ImageBrush imageBrush = new ImageBrush();
imageBrush.ImageSource = new BitmapImage(new Uri(somePath, UriKind.Relative));
inkCanvas.Background = imageBrush;
实际上,我想将图像设置为InkCanvas背景,然后再保存到相同的路径( somePath )。如果我使用的是同一张图片,则说明该图片已在使用中。