Label.Image Свойство
Определение
public:
property System::Drawing::Image ^ Image { System::Drawing::Image ^ get(); void set(System::Drawing::Image ^ value); };
public System.Drawing.Image Image { get; set; }
member this.Image : System.Drawing.Image with get, set
Public Property Image As Image
Значение свойства
Свойство Image отображается в элементе управления Label.An Image displayed on the Label. Значение по умолчанию — null
.The default is null
.
Примеры
В следующем примере кода показано, как создать Label а затем отобразить Image за Label.The following code example demonstrates how to create a Label and then to display an Image behind the Label. Во-первых, в примере создается Label, а затем создается Image на основе файла на диске.First, the example creates a Label and then creates an Image based on a disk file. Далее инициализируется свойство Size, содержащее Image.Next, the Size property is initialized to contain the Image. Наконец, свойство Image инициализируется в Image.Finally, the Image property is initialized to the 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
Комментарии
Свойство Image нельзя использовать одновременно со свойствами ImageList и ImageIndex.The Image property cannot be used at the same time as the ImageList and ImageIndex properties. Если для вывода изображения используется свойство Image, свойства ImageList и ImageIndex автоматически устанавливаются в значения по умолчанию.When the Image property is used to display an image, the ImageList and ImageIndex properties are automatically set to their default settings.