Icon 클래스
개체를 나타내는 데 사용하는 작은 비트맵 이미지인 Windows 아이콘을 나타냅니다. 아이콘은 시스템에 의해 크기가 결정되지만, 투명한 비트맵으로 생각될 수 있습니다.
네임스페이스: System.Drawing
어셈블리: System.Drawing(system.drawing.dll)
구문
‘선언
<SerializableAttribute> _
Public NotInheritable Class Icon
Inherits MarshalByRefObject
Implements ISerializable, ICloneable, IDisposable
‘사용 방법
Dim instance As Icon
[SerializableAttribute]
public sealed class Icon : MarshalByRefObject, ISerializable, ICloneable, IDisposable
[SerializableAttribute]
public ref class Icon sealed : public MarshalByRefObject, ISerializable, ICloneable, IDisposable
/** @attribute SerializableAttribute() */
public final class Icon extends MarshalByRefObject implements ISerializable, ICloneable,
IDisposable
SerializableAttribute
public final class Icon extends MarshalByRefObject implements ISerializable, ICloneable,
IDisposable
예제
다음 코드 예제에서는 ToBitmap 메서드를 사용하는 방법을 보여 줍니다. 이 예제는 Windows Forms과 함께 사용해야 합니다. 폼을 만들어 다음 코드를 해당 폼에 붙여넣으십시오. 폼의 Paint 이벤트 처리기에서 IconToBitmap
메서드를 호출하여 e를 PaintEventArgs로 전달합니다.
Private Sub IconToBitmap(ByVal e As PaintEventArgs)
' Construct an Icon.
Dim icon1 As New Icon(SystemIcons.Exclamation, 40, 40)
' Call ToBitmap to convert it.
Dim bmp As Bitmap = icon1.ToBitmap()
' Draw the bitmap.
e.Graphics.DrawImage(bmp, New Point(30, 30))
End Sub
private void IconToBitmap(PaintEventArgs e)
{
// Construct an Icon.
Icon icon1 = new Icon(SystemIcons.Exclamation, 40, 40);
// Call ToBitmap to convert it.
Bitmap bmp = icon1.ToBitmap();
// Draw the bitmap.
e.Graphics.DrawImage(bmp, new Point(30, 30));
}
private:
void IconToBitmap( PaintEventArgs^ e )
{
// Construct an Icon.
System::Drawing::Icon^ icon1 = gcnew System::Drawing::Icon( SystemIcons::Exclamation,40,40 );
// Call ToBitmap to convert it.
Bitmap^ bmp = icon1->ToBitmap();
// Draw the bitmap.
e->Graphics->DrawImage( bmp, Point(30,30) );
}
private void IconToBitmap(PaintEventArgs e)
{
// Construct an Icon.
Icon icon1 = new Icon(SystemIcons.get_Exclamation(), 40, 40);
// Call ToBitmap to convert it.
Bitmap bmp = icon1.ToBitmap();
// Draw the bitmap.
e.get_Graphics().DrawImage(bmp, new Point(30, 30));
} //IconToBitmap
상속 계층 구조
System.Object
System.MarshalByRefObject
System.Drawing.Icon
스레드로부터의 안전성
이 형식의 모든 public static(Visual Basic의 경우 Shared) 멤버는 스레드로부터 안전합니다. 인터페이스 멤버는 스레드로부터 안전하지 않습니다.
플랫폼
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원
.NET Compact Framework
2.0, 1.0에서 지원