Control.Layout Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando è necessario riposizionare i controlli figlio di un controllo.
public:
event System::Windows::Forms::LayoutEventHandler ^ Layout;
public event System.Windows.Forms.LayoutEventHandler Layout;
public event System.Windows.Forms.LayoutEventHandler? Layout;
member this.Layout : System.Windows.Forms.LayoutEventHandler
Public Custom Event Layout As LayoutEventHandler
Tipo evento
Esempio
L'esempio di codice seguente centra un oggetto Form sullo schermo nell'evento Layout . In questo modo il modulo verrà mantenuto centrato man mano che l'utente lo ridimensiona. In questo esempio è necessario che sia stato creato un Form controllo .
private:
void MyForm_Layout( Object^ /*sender*/, System::Windows::Forms::LayoutEventArgs^ /*e*/ )
{
// Center the Form on the user's screen everytime it requires a Layout.
this->SetBounds( (Screen::GetBounds( this ).Width / 2) - (this->Width / 2), (Screen::GetBounds( this ).Height / 2) - (this->Height / 2), this->Width, this->Height, BoundsSpecified::Location );
}
private void MyForm_Layout(object sender, System.Windows.Forms.LayoutEventArgs e)
{
// Center the Form on the user's screen everytime it requires a Layout.
this.SetBounds((Screen.GetBounds(this).Width/2) - (this.Width/2),
(Screen.GetBounds(this).Height/2) - (this.Height/2),
this.Width, this.Height, BoundsSpecified.Location);
}
Private Sub MyForm_Layout(ByVal sender As Object, _
ByVal e As System.Windows.Forms.LayoutEventArgs) Handles MyBase.Layout
' Center the Form on the user's screen everytime it requires a Layout.
Me.SetBounds((System.Windows.Forms.Screen.GetBounds(Me).Width / 2) - (Me.Width / 2), _
(System.Windows.Forms.Screen.GetBounds(Me).Height / 2) - (Me.Height / 2), _
Me.Width, Me.Height, System.Windows.Forms.BoundsSpecified.Location)
End Sub
Commenti
L'evento Layout si verifica quando i controlli figlio vengono aggiunti o rimossi, quando i limiti del controllo cambiano e quando si verificano altre modifiche che possono influire sul layout del controllo. L'evento di layout può essere eliminato usando i SuspendLayout metodi e ResumeLayout . La sospensione del layout consente di eseguire più azioni su un controllo senza dover eseguire un layout per ogni modifica. Ad esempio, se si ridimensiona e si sposta un controllo, ogni operazione genera un Layout evento.
Per ulteriori informazioni sulla gestione degli eventi, consultare gestione e generazione di eventi.