Label.Image Eigenschaft

Definition

Ruft das in Label dargestellte Bild ab oder legt dieses fest.

public:
 property System::Drawing::Image ^ Image { System::Drawing::Image ^ get(); void set(System::Drawing::Image ^ value); };
public System.Drawing.Image Image { get; set; }
public System.Drawing.Image? Image { get; set; }
member this.Image : System.Drawing.Image with get, set
Public Property Image As Image

Eigenschaftswert

Image

Ein Image, das im Label dargestellt wird. Der Standardwert ist null.

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie Sie eine Label Und dann eine Image Hinter dem LabelObjekt erstellen. Zuerst erstellt das Beispiel eine und erstellt dann eine Label Image basierend auf einer Datenträgerdatei. Als Nächstes wird die Eigenschaft initialisiert, um die Size Image. Schließlich wird die Image Eigenschaft für die Initialisierung des ImageObjekts initialisiert.

public:
   void CreateMyLabel()
   {
      // Create a new label and create a bitmap.
      Label^ label1 = gcnew Label;
      Image^ image1 = Image::FromFile( "c:\\MyImage.bmp" );

      // Set the size of the label to accommodate the bitmap size.
      label1->Size = System::Drawing::Size( image1->Width, image1->Height );

      // Initialize the label control's Image property.
      label1->Image = image1;

      // ...Code to add the control to the form...
   }
public void CreateMyLabel() 
{
 
    // Create a new label and create a bitmap.

    Label label1 = new Label();
    Image image1 = Image.FromFile("c:\\MyImage.bmp");

    // Set the size of the label to accommodate the bitmap size.

    label1.Size = new Size(image1.Width, image1.Height);

    // Initialize the label control's Image property.

    label1.Image = image1;

    // ...Code to add the control to the form...
}
Private Sub CreateMyLabel()

    ' Create a new label and bitmap.

    Dim Label1 As New Label()
    Dim Image1 As Image

    Image1 = Image.FromFile("c:\\MyImage.bmp")
   

    ' Set the size of the label to accommodate the bitmap size.

    Label1.Size = Image1.Size        

    ' Initialize the label control's Image property.

    Label1.Image = Image1

    ' ...Code to add the control to the form...

End Sub

Hinweise

Die Image Eigenschaft kann nicht gleichzeitig mit den ImageList eigenschaften ImageIndex verwendet werden. Wenn die Eigenschaft zum Anzeigen eines Bilds verwendet wird, werden die Image ImageList ImageIndex Eigenschaften automatisch auf ihre Standardeinstellungen festgelegt.

Gilt für

Siehe auch