5

WPFイメージコントロールで使用できるように、Bitmap (SystemIcons.Question)をに変換しようとしています。BitmapImage

私はそれをに変換する次のメソッドを持っていBitmapSourceますが、それはを返しますInteropBitmapImage、今問題はそれをに変換する方法BitmapImageです。直接キャストは機能しないようです。

誰かがそれを行う方法を知っていますか?

コード:

 public BitmapSource ConvertToBitmapSource()
        {
            int width = SystemIcons.Question.Width;
            int height = SystemIcons.Question.Height;
            object a = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(SystemIcons.Question.ToBitmap().GetHbitmap(), IntPtr.Zero, System.Windows.Int32Rect.Empty, BitmapSizeOptions.FromWidthAndHeight(width, height));

            return (BitmapSource)a;
        }

BitmapImageを返すプロパティ:(私の画像コントロールにバインドされています)

public BitmapImage QuestionIcon
        {
            get
            {
                return  (BitmapImage)ConvertToBitmapSource();
            }
        }
4

3 に答える 3

9

InteropBitmapImageから継承するため、コントロールImageSourceで直接使用できます。Imageである必要はありませんBitmapImage

于 2010-03-14T13:00:33.383 に答える
3

次を使用できるはずです。

    public BitmapImage QuestionIcon
    {
        get
        {
            using (MemoryStream ms = new MemoryStream())
            {
                System.Drawing.Bitmap dImg = SystemIcons.ToBitmap();
                dImg.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
                ms.Position = 0;
                System.Windows.Media.Imaging.BitmapImage bImg = new System.Windows.Media.Imaging.BitmapImage();
                bImg.BeginInit();
                bImg.StreamSource = new MemoryStream(ms.ToArray());
                bImg.EndInit();
                return bImg;
            }
        }
    }
于 2010-03-13T23:06:32.330 に答える
1
public System.Windows.Media.Imaging.BitmapImage QuestionIcon
{
    get
    {
        using (MemoryStream ms = new MemoryStream())
        {
            System.Drawing.Bitmap dImg = SystemIcons.ToBitmap();
            dImg.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
            ms.Position = 0;
            var bImg = new System.Windows.Media.Imaging.BitmapImage();
            bImg.BeginInit();
            bImg.StreamSource = ms;
            bImg.EndInit();
            return bImg;
        }
    }
}
于 2017-04-07T08:20:42.387 に答える