icon file
を画像ボックスに表示しようとしています。私はこのコードを使ってイメージを設定しています。ピクチャボックスにアイコンを表示
pictureBox1.Image = new Icon(openFileDialog.FileName, new Size(48, 48)).ToBitmap();
しかし、この例外が発生しています。
System.ArgumentOutOfRangeException: Requested range extends past the end of the array.
at System.Runtime.InteropServices.Marshal.CopyToNative(Object source, Int32 startIndex, IntPtr destination, Int32 length)
at System.Runtime.InteropServices.Marshal.Copy(Byte[] source, Int32 startIndex, IntPtr destination, Int32 length)
at System.Drawing.Icon.ToBitmap()
この問題を解決するにはどうすればよいですか?
ありがとうございました。
私が見つけた何が。とにかくありがとう。 –