ButtonBase.Image Свойство

Определение

Возвращает или задает изображение, отображаемое на кнопке.

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

Значение свойства

Image

Изображение Image, отображаемое в кнопке. Значение по умолчанию — null.

Примеры

В следующем примере кода используется производный класс Button и задаются некоторые из его общих свойств. Результатом будет плоская кнопка с текстом слева и изображением справа. Этот код требует наличия растрового изображения с именем MyBitMap.bmp , хранящимся в каталоге C:\Graphics , и что ссылка на System.Drawing пространство имен включена.

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

Комментарии

Image Если свойство задано, ImageList для свойства будет nullзадано значение -1, а ImageIndex свойство будет иметь значение по умолчанию.

Примечание

FlatStyle Если свойству присвоено значениеFlatStyle.System, все изображения, назначенные свойствуImage, не отображаются.

Применяется к

См. также раздел