我正在创建位图(bmp)并将其设置为图像控件的来源
image.Source = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(
bmp.GetHbitmap(),
IntPtr.Zero,
Int32Rect.Empty,
BitmapSizeOptions.FromEmptyOptions());
现在我必须清除图像控件,但不知道如何:/
我尝试过image.Source = null,但是不起作用