Control.BringToFront Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Traz o controle para a frente da ordem z.
public:
void BringToFront();
public void BringToFront ();
member this.BringToFront : unit -> unit
Public Sub BringToFront ()
Exemplos
O exemplo de código a seguir garante que um Label seja visível chamando seu BringToFront método. Este exemplo exige que você tenha um Form com um Panel chamado panel1
e um Label chamado 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
Comentários
O controle é movido para a frente da ordem z. Se o controle for um filho de outro controle, o controle filho será movido para a frente da ordem z. BringToFront não torna um controle de nível superior e não gera o Paint evento.