Label.ImageList Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
public:
property System::Windows::Forms::ImageList ^ ImageList { System::Windows::Forms::ImageList ^ get(); void set(System::Windows::Forms::ImageList ^ value); };
public System.Windows.Forms.ImageList ImageList { get; set; }
public System.Windows.Forms.ImageList? ImageList { get; set; }
member this.ImageList : System.Windows.Forms.ImageList with get, set
Public Property ImageList As ImageList
Eigenschaftswert
Eine ImageList, in der die Auflistung von Image-Objekten gespeichert wird. Der Standardwert ist null
.
Beispiele
Im folgenden Codebeispiel wird veranschaulicht, wie Ein Steuerelement mit einem dreidimensionalen Rahmen und einem Label Bild erstellt wird, das mithilfe der ImageList Eigenschaften ImageIndex angezeigt wird. Das Steuerelement hat auch eine Beschriftung mit einem mnemonic-Zeichen angegeben. Der Beispielcode verwendet die PreferredHeight und PreferredWidth die Eigenschaften, um das Label Steuerelement auf dem Formular, auf dem es angezeigt wird, ordnungsgemäß zu vergrößern. In diesem Beispiel ist erforderlich, dass ein ImageList erstellter und benannter ImageList1 erstellt wurde und zwei Bilder geladen hat. Das Beispiel erfordert auch, dass sich der Code in einem Formular befindet, das den System.Drawing Namespace dem Code hinzugefügt hat.
public:
void CreateMyLabel()
{
// Create an instance of a Label.
Label^ label1 = gcnew Label;
// Set the border to a three-dimensional border.
label1->BorderStyle = System::Windows::Forms::BorderStyle::Fixed3D;
// Set the ImageList to use for displaying an image.
label1->ImageList = imageList1;
// Use the second image in imageList1.
label1->ImageIndex = 1;
// Align the image to the top left corner.
label1->ImageAlign = ContentAlignment::TopLeft;
// Specify that the text can display mnemonic characters.
label1->UseMnemonic = true;
// Set the text of the control and specify a mnemonic character.
label1->Text = "First &Name:";
/* Set the size of the control based on the PreferredHeight and PreferredWidth values. */
label1->Size = System::Drawing::Size( label1->PreferredWidth, label1->PreferredHeight );
//...Code to add the control to the form...
}
public void CreateMyLabel()
{
// Create an instance of a Label.
Label label1 = new Label();
// Set the border to a three-dimensional border.
label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
// Set the ImageList to use for displaying an image.
label1.ImageList = imageList1;
// Use the second image in imageList1.
label1.ImageIndex = 1;
// Align the image to the top left corner.
label1.ImageAlign = ContentAlignment.TopLeft;
// Specify that the text can display mnemonic characters.
label1.UseMnemonic = true;
// Set the text of the control and specify a mnemonic character.
label1.Text = "First &Name:";
/* Set the size of the control based on the PreferredHeight and PreferredWidth values. */
label1.Size = new Size (label1.PreferredWidth, label1.PreferredHeight);
//...Code to add the control to the form...
}
Public Sub CreateMyLabel()
' Create an instance of a Label.
Dim label1 As New Label()
' Set the border to a three-dimensional border.
label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
' Set the ImageList to use for displaying an image.
label1.ImageList = imageList1
' Use the second image in imageList1.
label1.ImageIndex = 1
' Align the image to the top left corner.
label1.ImageAlign = ContentAlignment.TopLeft
' Specify that the text can display mnemonic characters.
label1.UseMnemonic = True
' Set the text of the control and specify a mnemonic character.
label1.Text = "First &Name:"
' Set the size of the control based on the PreferredHeight and PreferredWidth values.
label1.Size = New Size(label1.PreferredWidth, label1.PreferredHeight)
'...Code to add the control to the form...
End Sub
Hinweise
Die ImageIndex ImageList Eigenschaften können nicht gleichzeitig mit der Image Eigenschaft verwendet werden. Wenn die Eigenschaft und ImageList Eigenschaften zum Anzeigen eines Bilds verwendet werden, wird die ImageIndex Image Eigenschaft auf null
"festgelegt" festgelegt.
Hinweis
Der Label Müll wird nicht gesammelt, wenn er ImageList noch an anderer Stelle referenziert wird. Legen Sie die ImageList Eigenschaft des Label Objekts fest, null
um eine effiziente Garbage Collection zu ermöglichen.