次のコンパイル時エラーが発生します。
The type or namespace name 'Bitmap' could not be found (are you missing a using directive or an assembly reference?)
これが私のコードです:
BitmapImage img = new BitmapImage();
参照に追加する必要がSystem.Drawing
あるため、ソリューション エクスプローラーで [参照] を右クリックし、[参照の追加] をクリックし、アセンブリで検索して [ OKSystem.Drawing
] をクリックします。
PresentationCore を参照として追加します。
PresentationCore アセンブリがプロジェクトの参照リストに表示されます。
ファイルの先頭にある System.Windows.Media.Imaging 名前空間の using ディレクティブを追加しBitmapImage
ます。
using System;
using System.Windows.Media.Imaging;
おそらく、次を追加する必要があります。
using System.Windows.Media.Imaging;