Control.Top 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.
Ruft den Abstand zwischen dem oberen Rand des Steuerelements und dem oberen Rand des Clientbereichs des zugehörigen Containers in Pixel ab oder legt diesen fest.
public:
property int Top { int get(); void set(int value); };
[System.ComponentModel.Browsable(false)]
public int Top { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.Top : int with get, set
Public Property Top As Integer
Eigenschaftswert
Eine Int32 Darstellung des Abstands zwischen dem oberen Rand des Steuerelements und dem oberen Rand des Clientbereichs des Containers.
- Attribute
Beispiele
Im folgenden Codebeispiel werden drei Button Steuerelemente in einem Formular erstellt und deren Größe und Position mithilfe der verschiedenen Eigenschaften mit Größe und Position festgelegt. In diesem Beispiel ist erforderlich, dass Sie über Form eine Breite und Höhe von mindestens 300 Pixeln verfügen.
// Create three buttons and place them on a form using
// several size and location related properties.
void AddOKCancelButtons()
{
// Set the button size and location using
// the Size and Location properties.
Button^ buttonOK = gcnew Button;
buttonOK->Location = Point(136,248);
buttonOK->Size = System::Drawing::Size( 75, 25 );
// Set the Text property and make the
// button the form's default button.
buttonOK->Text = "&OK";
this->AcceptButton = buttonOK;
// Set the button size and location using the Top,
// Left, Width, and Height properties.
Button^ buttonCancel = gcnew Button;
buttonCancel->Top = buttonOK->Top;
buttonCancel->Left = buttonOK->Right + 5;
buttonCancel->Width = buttonOK->Width;
buttonCancel->Height = buttonOK->Height;
// Set the Text property and make the
// button the form's cancel button.
buttonCancel->Text = "&Cancel";
this->CancelButton = buttonCancel;
// Set the button size and location using
// the Bounds property.
Button^ buttonHelp = gcnew Button;
buttonHelp->Bounds = Rectangle(10,10,75,25);
// Set the Text property of the button.
buttonHelp->Text = "&Help";
// Add the buttons to the form.
array<Control^>^temp1 = {buttonOK,buttonCancel,buttonHelp};
this->Controls->AddRange( temp1 );
}
// Create three buttons and place them on a form using
// several size and location related properties.
private void AddOKCancelButtons()
{
// Set the button size and location using
// the Size and Location properties.
Button buttonOK = new Button();
buttonOK.Location = new Point(136,248);
buttonOK.Size = new Size(75,25);
// Set the Text property and make the
// button the form's default button.
buttonOK.Text = "&OK";
this.AcceptButton = buttonOK;
// Set the button size and location using the Top,
// Left, Width, and Height properties.
Button buttonCancel = new Button();
buttonCancel.Top = buttonOK.Top;
buttonCancel.Left = buttonOK.Right + 5;
buttonCancel.Width = buttonOK.Width;
buttonCancel.Height = buttonOK.Height;
// Set the Text property and make the
// button the form's cancel button.
buttonCancel.Text = "&Cancel";
this.CancelButton = buttonCancel;
// Set the button size and location using
// the Bounds property.
Button buttonHelp = new Button();
buttonHelp.Bounds = new Rectangle(10,10, 75, 25);
// Set the Text property of the button.
buttonHelp.Text = "&Help";
// Add the buttons to the form.
this.Controls.AddRange(new Control[] {buttonOK, buttonCancel, buttonHelp} );
}
' Create three buttons and place them on a form using
' several size and location related properties.
Private Sub AddOKCancelButtons()
' Set the button size and location using
' the Size and Location properties.
Dim buttonOK As New Button()
buttonOK.Location = New Point(136, 248)
buttonOK.Size = New Size(75, 25)
' Set the Text property and make the
' button the form's default button.
buttonOK.Text = "&OK"
Me.AcceptButton = buttonOK
' Set the button size and location using the Top,
' Left, Width, and Height properties.
Dim buttonCancel As New Button()
buttonCancel.Top = buttonOK.Top
buttonCancel.Left = buttonOK.Right + 5
buttonCancel.Width = buttonOK.Width
buttonCancel.Height = buttonOK.Height
' Set the Text property and make the
' button the form's cancel button.
buttonCancel.Text = "&Cancel"
Me.CancelButton = buttonCancel
' Set the button size and location using
' the Bounds property.
Dim buttonHelp As New Button()
buttonHelp.Bounds = New Rectangle(10, 10, 75, 25)
' Set the Text property of the button.
buttonHelp.Text = "&Help"
' Add the buttons to the form.
Me.Controls.AddRange(New Control() {buttonOK, buttonCancel, buttonHelp})
End Sub
Hinweise
Der Top Eigenschaftswert entspricht der Point.Y Location Eigenschaft des Eigenschaftswerts des Steuerelements.
Änderungen, die an den Werten der Height Eigenschaft vorgenommen wurden, Top führen dazu, dass der Bottom Eigenschaftswert des Steuerelements geändert wird.