我試圖在圖片框中顯示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()
如何克服這個問題?
謝謝。
這就是我發現。不管怎麼說,還是要謝謝你。 –