TextBoxBase.HideSelection Propriété
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.
Obtient ou définit une valeur indiquant si le texte sélectionné dans le contrôle zone de texte reste en surbrillance quand le focus passe à un autre contrôle.
public:
property bool HideSelection { bool get(); void set(bool value); };
public bool HideSelection { get; set; }
member this.HideSelection : bool with get, set
Public Property HideSelection As Boolean
Valeur de propriété
true
si le texte sélectionné n'apparaît pas en surbrillance lorsque le contrôle zone de texte perd le focus ; false
si le texte sélectionné reste en surbrillance lorsque le contrôle zone de texte perd le focus. La valeur par défaut est true
.
Exemples
L’exemple de code suivant montre comment utiliser la HideSelection propriété. Pour exécuter l’exemple, collez le code suivant dans un formulaire. Appelez la méthode dans le constructeur ou Load
la InitializeTextBox
méthode du formulaire.
//Declare a textbox called TextBox1.
internal:
System::Windows::Forms::TextBox^ TextBox1;
private:
//Initialize TextBox1.
void InitializeTextBox()
{
this->TextBox1 = gcnew TextBox;
this->TextBox1->Location = System::Drawing::Point( 32, 24 );
this->TextBox1->Name = "TextBox1";
this->TextBox1->Size = System::Drawing::Size( 136, 20 );
this->TextBox1->TabIndex = 1;
this->TextBox1->Text = "Type and hit enter here...";
//Keep the selection highlighted, even after textbox loses focus.
TextBox1->HideSelection = false;
this->Controls->Add( TextBox1 );
}
//Declare a textbox called TextBox1.
internal System.Windows.Forms.TextBox TextBox1;
//Initialize TextBox1.
private void InitializeTextBox()
{
this.TextBox1 = new TextBox();
this.TextBox1.Location = new System.Drawing.Point(32, 24);
this.TextBox1.Name = "TextBox1";
this.TextBox1.Size = new System.Drawing.Size(136, 20);
this.TextBox1.TabIndex = 1;
this.TextBox1.Text = "Type and hit enter here...";
//Keep the selection highlighted, even after textbox loses focus.
TextBox1.HideSelection = false;
this.Controls.Add(TextBox1);
}
'Declare a textbox called TextBox1.
Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
'Initialize TextBox1.
Private Sub InitializeTextBox()
Me.TextBox1 = New TextBox
Me.TextBox1.Location = New System.Drawing.Point(32, 24)
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.Size = New System.Drawing.Size(136, 20)
Me.TextBox1.TabIndex = 1
Me.TextBox1.Text = "Type and hit enter here..."
'Keep the selection highlighted, even after textbox loses focus.
TextBox1.HideSelection = False
Me.Controls.Add(TextBox1)
End Sub
Remarques
Vous pouvez utiliser cette propriété pour conserver le texte mis en surbrillance dans un contrôle de zone de texte alors qu’un autre formulaire ou une boîte de dialogue a le focus, par exemple une boîte de dialogue vérificateur d’orthographe.