Graphics.DrawIcon Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Belirtilen koordinatlarda belirtilen Icon tarafından temsil edilen görüntüyü çizer.
Aşırı Yüklemeler
DrawIcon(Icon, Rectangle) |
Bir Rectangle yapısı tarafından belirtilen alan içinde belirtilen Icon tarafından temsil edilen görüntüyü çizer. |
DrawIcon(Icon, Int32, Int32) |
Belirtilen koordinatlarda belirtilen Icon tarafından temsil edilen görüntüyü çizer. |
DrawIcon(Icon, Rectangle)
- Kaynak:
- Graphics.cs
- Kaynak:
- Graphics.cs
- Kaynak:
- Graphics.cs
- Kaynak:
- Graphics.cs
- Kaynak:
- Graphics.cs
public:
void DrawIcon(System::Drawing::Icon ^ icon, System::Drawing::Rectangle targetRect);
public void DrawIcon (System.Drawing.Icon icon, System.Drawing.Rectangle targetRect);
member this.DrawIcon : System.Drawing.Icon * System.Drawing.Rectangle -> unit
Public Sub DrawIcon (icon As Icon, targetRect As Rectangle)
Parametreler
- targetRect
- Rectangle
Görüntü yüzeyinde elde edilen görüntünün konumunu ve boyutunu belirten Rectangle yapı.
icon
parametresinde yer alan görüntü, bu dikdörtgen alanın boyutlarına ölçeklendirilir.
Özel durumlar
icon
null
.
Örnekler
Aşağıdaki kod örneği Windows Forms ile kullanılmak üzere tasarlanmıştır ve Paint olay işleyicisinin bir parametresi olan PaintEventArgse
gerektirir. Kod aşağıdaki eylemleri gerçekleştirir:
Örnek klasörde SampIcon.ico standart bir Windows simge dosyasından bir simge oluşturur.
Simgenin çizildiği bir dikdörtgen oluşturur.
Simgeyi ekrana çizer.
Dikdörtgenin konumu ekrandaki simgeyi bulur ve dikdörtgenin boyutu, çizilen simgenin ölçeğini belirler.
private:
void DrawIconRectangle( PaintEventArgs^ e )
{
// Create icon.
System::Drawing::Icon^ newIcon = gcnew System::Drawing::Icon( "SampIcon.ico" );
// Create rectangle for icon.
Rectangle rect = Rectangle(100,100,200,200);
// Draw icon to screen.
e->Graphics->DrawIcon( newIcon, rect );
}
private void DrawIconRectangle(PaintEventArgs e)
{
// Create icon.
Icon newIcon = new Icon("SampIcon.ico");
// Create rectangle for icon.
Rectangle rect = new Rectangle(100, 100, 200, 200);
// Draw icon to screen.
e.Graphics.DrawIcon(newIcon, rect);
}
Private Sub DrawIconRectangle(ByVal e As PaintEventArgs)
' Create icon.
Dim newIcon As New Icon("SampIcon.ico")
' Create rectangle for icon.
Dim rect As New Rectangle(100, 100, 200, 200)
' Draw icon to screen.
e.Graphics.DrawIcon(newIcon, rect)
End Sub
Şunlara uygulanır
DrawIcon(Icon, Int32, Int32)
- Kaynak:
- Graphics.cs
- Kaynak:
- Graphics.cs
- Kaynak:
- Graphics.cs
- Kaynak:
- Graphics.cs
- Kaynak:
- Graphics.cs
Belirtilen koordinatlarda belirtilen Icon tarafından temsil edilen görüntüyü çizer.
public:
void DrawIcon(System::Drawing::Icon ^ icon, int x, int y);
public void DrawIcon (System.Drawing.Icon icon, int x, int y);
member this.DrawIcon : System.Drawing.Icon * int * int -> unit
Public Sub DrawIcon (icon As Icon, x As Integer, y As Integer)
Parametreler
- x
- Int32
Çizilen görüntünün sol üst köşesinin x koordinatı.
- y
- Int32
Çizilen görüntünün sol üst köşesinin y koordinatı.
Özel durumlar
icon
null
.
Örnekler
Aşağıdaki kod örneği Windows Forms ile kullanılmak üzere tasarlanmıştır ve Paint olay işleyicisinin bir parametresi olan PaintEventArgse
gerektirir. Kod aşağıdaki eylemleri gerçekleştirir:
Örnek klasörde SampIcon.ico standart bir Windows simge dosyasından bir simge oluşturur.
Simgenin çizildiği sol üst köşenin koordinatlarını oluşturur.
Simgeyi ekrana çizer.
Çizilen simge ölçeklendirilmemiş.
private:
void DrawIconInt( PaintEventArgs^ e )
{
// Create icon.
System::Drawing::Icon^ newIcon = gcnew System::Drawing::Icon( "SampIcon.ico" );
// Create coordinates for upper-left corner of icon.
int x = 100;
int y = 100;
// Draw icon to screen.
e->Graphics->DrawIcon( newIcon, x, y );
}
private void DrawIconInt(PaintEventArgs e)
{
// Create icon.
Icon newIcon = new Icon("SampIcon.ico");
// Create coordinates for upper-left corner of icon.
int x = 100;
int y = 100;
// Draw icon to screen.
e.Graphics.DrawIcon(newIcon, x, y);
}
Private Sub DrawIconInt(ByVal e As PaintEventArgs)
' Create icon.
Dim newIcon As New Icon("SampIcon.ico")
' Create coordinates for upper-left corner of icon.
Dim x As Integer = 100
Dim y As Integer = 100
' Draw icon to screen.
e.Graphics.DrawIcon(newIcon, x, y)
End Sub