Control.Hide 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.
Masque le contrôle à l'utilisateur.
public:
void Hide();
public void Hide ();
member this.Hide : unit -> unit
Public Sub Hide ()
Exemples
L’exemple de code suivant masque un bouton si la touche Ctrl est enfoncée lorsque le bouton est cliqué. Cet exemple nécessite que vous ayez un Button nom button1
sur un Form.
private:
void button1_Click( Object^ sender, System::EventArgs^ /*e*/ )
{
/* If the CTRL key is pressed when the
* control is clicked, hide the control. */
if ( Control::ModifierKeys == Keys::Control )
{
(dynamic_cast<Control^>(sender))->Hide();
}
}
private void button1_Click(object sender, System.EventArgs e)
{
/* If the CTRL key is pressed when the
* control is clicked, hide the control. */
if(Control.ModifierKeys == Keys.Control)
{
((Control)sender).Hide();
}
}
Private Sub button1_Click(sender As Object, _
e As EventArgs) Handles button1.Click
' If the CTRL key is pressed when the
' control is clicked, hide the control.
If Control.ModifierKeys = Keys.Control Then
CType(sender, Control).Hide()
End If
End Sub
Remarques
La masquage du contrôle équivaut à définir la Visible propriété false
sur . Une fois la Hide méthode appelée, la Visible propriété retourne une valeur jusqu’à false
ce que la Show méthode soit appelée.