Graphics.DrawIcon 方法

定義

在指定的座標上繪製指定的 Icon 所代表的影像。

多載

DrawIcon(Icon, Rectangle)

繪製由 Rectangle 結構所指定區域內所指定 Icon 所代表的影像。

DrawIcon(Icon, Int32, Int32)

在指定的座標上繪製指定的 Icon 所代表的影像。

DrawIcon(Icon, Rectangle)

來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs

繪製由 Rectangle 結構所指定區域內所指定 Icon 所代表的影像。

C#
public void DrawIcon (System.Drawing.Icon icon, System.Drawing.Rectangle targetRect);

參數

icon
Icon

要繪製的 Icon

targetRect
Rectangle

Rectangle 結構,指定顯示介面上所產生影像的位置和大小。 包含在 icon 參數中的影像會縮放至這個矩形區域的維度。

例外狀況

icon null

範例

下列程式代碼範例是專為搭配 Windows Forms 使用而設計,而且需要 PaintEventArgse,這是 Paint 事件處理程式的參數。 程式代碼會執行下列動作:

  • 從範例資料夾中的標準 Windows 圖示檔案SampIcon.ico建立圖示。

  • 建立要在其中繪製圖示的矩形。

  • 將圖示繪製至畫面。

矩形的位置會在畫面上找出圖示,而矩形的大小會決定繪製圖示的縮放比例。

C#
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);
}

適用於

.NET 9 和其他版本
產品 版本
.NET 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

DrawIcon(Icon, Int32, Int32)

來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs

在指定的座標上繪製指定的 Icon 所代表的影像。

C#
public void DrawIcon (System.Drawing.Icon icon, int x, int y);

參數

icon
Icon

要繪製的 Icon

x
Int32

繪製影像左上角的 X 座標。

y
Int32

繪製影像左上角的 Y 座標。

例外狀況

icon null

範例

下列程式代碼範例是專為搭配 Windows Forms 使用而設計,而且需要 PaintEventArgse,這是 Paint 事件處理程式的參數。 程式代碼會執行下列動作:

  • 從範例資料夾中的標準 Windows 圖示檔案SampIcon.ico建立圖示。

  • 建立左上角的座標,以繪製圖示。

  • 將圖示繪製至畫面。

繪製的圖示未調整。

C#
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);
}

適用於

.NET 9 和其他版本
產品 版本
.NET 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9