Control.BringToFront Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Fait passer le contrôle au premier rang de l'ordre de plan.
public:
void BringToFront();
public void BringToFront ();
member this.BringToFront : unit -> unit
Public Sub BringToFront ()
Exemples
L’exemple de code suivant garantit qu’un Label est visible en appelant sa BringToFront méthode. Cet exemple nécessite que vous ayez un Form avec un Panel nommé panel1
et un Label nommé label1
.
private:
void MakeLabelVisible()
{
/* If the panel contains label1, bring it
* to the front to make sure it is visible. */
if ( panel1->Contains( label1 ) )
{
label1->BringToFront();
}
}
private void MakeLabelVisible()
{
/* If the panel contains label1, bring it
* to the front to make sure it is visible. */
if(panel1.Contains(label1))
{
label1.BringToFront();
}
}
Private Sub MakeLabelVisible()
' If the panel contains label1, bring it
' to the front to make sure it is visible.
If panel1.Contains(label1) Then
label1.BringToFront()
End If
End Sub
Remarques
Le contrôle est déplacé vers l’avant de l’ordre de plan. Si le contrôle est un enfant d’un autre contrôle, le contrôle enfant est déplacé vers l’avant de l’ordre de plan. BringToFront ne fait pas d’un contrôle un contrôle de niveau supérieur et ne déclenche pas l’événement Paint .