SystemIcons Klasse

Definition

Jede Eigenschaft der SystemIcons-Klasse ist ein Icon-Objekt für im gesamten System verwendete Windows-Symbole. Diese Klasse kann nicht vererbt werden.

public ref class SystemIcons abstract sealed
public ref class SystemIcons sealed
public static class SystemIcons
public sealed class SystemIcons
type SystemIcons = class
Public Class SystemIcons
Public NotInheritable Class SystemIcons
Vererbung
SystemIcons

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie Sie eine Bitmap aus einem Icon Handle laden, indem Sie die GraphicsUnit -Enumeration verwenden und die Round -Methode verwenden, um die Rechteckgrenzen einer Bitmap zu zeichnen.

Dieses Beispiel ist für die Verwendung mit Windows Forms konzipiert. Create ein Formular, das eine Schaltfläche mit dem Namen Button2 enthält. Fügen Sie den Code in das Formular ein, und ordnen Sie diese Methode dem Ereignis der Click Schaltfläche zu.

void Button2_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   Bitmap^ bitmap1 = Bitmap::FromHicon( SystemIcons::Hand->Handle );
   Graphics^ formGraphics = this->CreateGraphics();
   GraphicsUnit units = GraphicsUnit::Point;
   RectangleF bmpRectangleF = bitmap1->GetBounds( units );
   Rectangle bmpRectangle = Rectangle::Round( bmpRectangleF );
   formGraphics->DrawRectangle( Pens::Blue, bmpRectangle );
   delete formGraphics;
}
private void Button2_Click(System.Object sender, System.EventArgs e)
{

    Bitmap bitmap1 = Bitmap.FromHicon(SystemIcons.Hand.Handle);
    Graphics formGraphics = this.CreateGraphics();
    GraphicsUnit units = GraphicsUnit.Point;

    RectangleF bmpRectangleF = bitmap1.GetBounds(ref units);
    Rectangle bmpRectangle = Rectangle.Round(bmpRectangleF);
    formGraphics.DrawRectangle(Pens.Blue, bmpRectangle);
    formGraphics.Dispose();
}
Private Sub Button2_Click(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) Handles Button2.Click

    Dim bitmap1 As Bitmap = Bitmap.FromHicon(SystemIcons.Hand.Handle)
    Dim formGraphics As Graphics = Me.CreateGraphics()
    Dim units As GraphicsUnit = GraphicsUnit.Point
    Dim bmpRectangleF As RectangleF = bitmap1.GetBounds(units)
    Dim bmpRectangle As Rectangle = Rectangle.Round(bmpRectangleF)
    formGraphics.DrawRectangle(Pens.Blue, bmpRectangle)
    formGraphics.Dispose()
End Sub

Hinweise

Hinweis

In .NET 6 und höheren Versionen wird das System.Drawing.Common-Paket, das diesen Typ enthält, nur unter Windows-Betriebssystemen unterstützt. Die Verwendung dieses Typs in plattformübergreifenden Apps verursacht Kompilierzeitwarnungen und Laufzeitausnahmen. Weitere Informationen finden Sie unter System.Drawing.Common wird nur unter Windows unterstützt.

Eigenschaften

Application

Ruft ein Icon-Objekt ab, das das Standardanwendungssymbol (WIN32: IDI_APPLICATION) enthält.

Asterisk

Ruft ein Icon-Objekt ab, das das Sternchensymbol des Systems (WIN32: IDI_ASTERISK) enthält.

Error

Ruft ein Icon-Objekt ab, das das Fehlersymbol des Systems (WIN32: IDI_ERROR) enthält.

Exclamation

Ruft ein Icon-Objekt ab, das das Ausrufezeichensymbol des Systems (WIN32: IDI_EXCLAMATION) enthält.

Hand

Ruft ein Icon-Objekt ab, das das Handsymbol des Systems (WIN32: IDI_HAND) enthält.

Information

Ruft ein Icon-Objekt ab, das das Informationssymbol des Systems (WIN32: IDI_INFORMATION) enthält.

Question

Ruft ein Icon-Objekt ab, das das Fragezeichensymbol des Systems (WIN32: IDI_QUESTION) enthält.

Shield

Ruft ein Icon-Objekt ab, das das Shield-Symbol enthält.

Warning

Ruft ein Icon-Objekt ab, das das Warnungssymbol des Systems (WIN32: IDI_WARNING) enthält.

WinLogo

Ruft ein Icon-Objekt ab, das das Symbol für das Windowslogo (WIN32: IDI_WINLOGO) enthält.

Methoden

GetStockIcon(StockIconId, Int32)

Ruft das angegebene Symbol für die Windows-Shell ab.

GetStockIcon(StockIconId, StockIconOptions)

Ruft das angegebene Symbol für die Windows-Shell ab.

Gilt für: