Label.Image Propriedade

Definição

Obtém ou define a imagem exibida em um Label.

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

Valor da propriedade

Um Image exibido no Label. O padrão é null.

Exemplos

O exemplo de código a seguir demonstra como criar um Label e, em seguida, exibir um Image atrás do Label. Primeiro, o exemplo cria um Label e, em seguida, cria um Image com base em um arquivo de disco. Em seguida, a Size propriedade é inicializada para conter o Image. Por fim, a Image propriedade é inicializada para o Image.

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

Comentários

A Image propriedade não pode ser usada ao mesmo tempo que as ImageList propriedades e ImageIndex . Quando a Image propriedade é usada para exibir uma imagem, as ImageList propriedades e ImageIndex são definidas automaticamente como suas configurações padrão.

Aplica-se a

Confira também