wpfコントロールとフレームワークの新機能です。私はあなたが以下 がSystem.Drawing.Bitmapのために私のコードイメージをWPFのファイルに保存する方法
SaveFileDialog sfd = new SaveFileDialog();
sfd.FileName = System.IO.Path.GetFileNameWithoutExtension(newlist[currentPicture]);
Nullable<bool> result = sfd.ShowDialog();
if (result == true)
{
System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(newlist[currentPicture]);
bmp.Save(newlist[currentPicture]);
}
WPFではありません。 – SLaks
あなたはあなたの質問に対する答えを受け入れるべきです。 – SLaks
なぜですか?何が起こるのですか? – SLaks