ButtonBase.Image Proprietà

Definizione

Ottiene o imposta l'immagine visualizzata su un controllo pulsante.

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

Valore della proprietà

Image

L'oggetto Image visualizzato sul controllo pulsante. Il valore predefinito è null.

Esempio

L'esempio di codice seguente usa la classe Button derivata e imposta alcune delle relative proprietà comuni. Il risultato sarà un pulsante flat con testo a sinistra e un'immagine a destra. Questo codice richiede che sia presente un'immagine bitmap denominata MyBitMap.bmp archiviata nella C:\Graphics directory e che sia incluso un riferimento allo System.Drawing spazio dei nomi.

private:
   void SetMyButtonProperties()
   {
      // Assign an image to the button.
      button1->Image = Image::FromFile( "C:\\Graphics\\MyBitmap.bmp" );
      // Align the image and text on the button.
      button1->ImageAlign = ContentAlignment::MiddleRight;
      button1->TextAlign = ContentAlignment::MiddleLeft;
      // Give the button a flat appearance.
      button1->FlatStyle = FlatStyle::Flat;
   }
private void SetMyButtonProperties()
 {
    // Assign an image to the button.
    button1.Image = Image.FromFile("C:\\Graphics\\MyBitmap.bmp");
    // Align the image and text on the button.
    button1.ImageAlign = ContentAlignment.MiddleRight;    
    button1.TextAlign = ContentAlignment.MiddleLeft;
    // Give the button a flat appearance.
    button1.FlatStyle = FlatStyle.Flat;
 }
Private Sub SetMyButtonProperties()
    ' Assign an image to the button.
    button1.Image = Image.FromFile("C:\Graphics\MyBitmap.bmp")
    ' Align the image and text on the button.
    button1.ImageAlign = ContentAlignment.MiddleRight
    button1.TextAlign = ContentAlignment.MiddleLeft
    ' Give the button a flat appearance.
    button1.FlatStyle = FlatStyle.Flat
End Sub

Commenti

Quando la Image proprietà è impostata, la ImageList proprietà verrà impostata su nulle la ImageIndex proprietà verrà impostata sul valore predefinito, -1.

Nota

Se la FlatStyle proprietà è impostata su FlatStyle.System, le immagini assegnate alla Image proprietà non vengono visualizzate.

Si applica a

Vedi anche