标签: c# wpf silverlight xaml bitmap
我在WPF中开发。我有一个黑色位图,我想在运行时将颜色改为白色!
答案 0 :(得分:1)
如果你使用WriteableBitmapExtensions,这很容易。
using WriteableBitmapEx; ... myBitmap.Clear(System.Windows.Media.Colors.White);