TextBoxBase.Clear Methode

Definition

Löscht den gesamten Text aus dem Textfeld-Steuerelement.

public:
 void Clear();
public void Clear ();
member this.Clear : unit -> unit
Public Sub Clear ()

Beispiele

Im folgenden Codebeispiel wird eine abgeleitete Klasse verwendet TextBox, um einen Ereignishandler für das TextChanged Ereignis zu erstellen. Der Code innerhalb des Ereignishandlers beschränkt Daten auf Zahlen. Nachdem Text in das Steuerelement eingegeben wurde, bestimmt der Code, ob es sich bei dem eingegebenen Text um eine Zahl handelt. Wenn der Text keine Zahl ist, löscht der Code den Text aus dem Steuerelement, und es wird ein MessageBox angezeigt, um den Benutzer darauf hinzuweisen, dass nur Zahlen akzeptiert werden. Das Beispiel erfordert, dass eine Boolean Variable mit dem Namen flag und ein TextBox Steuerelement mit dem Namen textBox1 außerhalb dieser Methode definiert werden. In diesem Beispiel wird veranschaulicht, wie eine Flagvariable verwendet wird, um ein kaskadierendes Ereignis im TextChanged -Ereignis zu vermeiden.

private:
   bool flag;

private:
   void MyTextChangedHandler( System::Object^ sender, System::EventArgs^ e )
   {
      Int64 val;
      // Check the flag to prevent code re-entry. 
      if ( flag == false )
      {
         // Set the flag to True to prevent re-entry of the code below.
         flag = true;
         // Determine if the text of the control is a number.
         try
         {
            // Attempt to convert to long
            val = System::Convert::ToInt64( textBox1->Text );
         }
         catch ( Exception^ ) 
         {
            // Display a message box and clear the contents if not a number.
            MessageBox::Show( "The text is not a valid number. Please re-enter" );
            // Clear the contents of the text box to allow re-entry.
            textBox1->Clear();
         }
         // Reset the flag so other TextChanged events are processed correctly.
         flag = false;
      }
   }
private bool flag;

private void MyTextChangedHandler(System.Object sender, System.EventArgs e)
{
    long val;    
    // Check the flag to prevent code re-entry. 
    if(flag == false)
    {
       // Set the flag to True to prevent re-entry of the code below.
       flag = true;
       // Determine if the text of the control is a number.
       try {
          // Attempt to convert to long
          val = System.Convert.ToInt64(textBox1.Text);
       }
       catch {
          // Display a message box and clear the contents if not a number.
          MessageBox.Show("The text is not a valid number. Please re-enter");
          // Clear the contents of the text box to allow re-entry.
          textBox1.Clear();
       }
       // Reset the flag so other TextChanged events are processed correctly.
       flag = false;
    }        
 }
Private flag As Boolean    

Private Sub MyTextChangedHandler(sender As System.Object, e As System.EventArgs)
    ' Check the flag to prevent code re-entry. 
    If flag = False Then
        ' Set the flag to True to prevent re-entry of the code below.
        flag = True
        ' Determine if the text of the control is a number.
        If IsNumeric(textBox1.Text) = False Then
            ' Display a message box and clear the contents if not a number.
            MessageBox.Show("The text is not a valid number. Please re-enter")
            ' Clear the contents of the text box to allow re-entry.
            textBox1.Clear()
        End If
        ' Reset the flag so other TextChanged events are processed correctly.
        flag = False
    End If
End Sub

Hinweise

Sie können diese Methode verwenden, um den Inhalt des Steuerelements zu löschen, anstatt der Text Eigenschaft eine leere Zeichenfolge zuzuweisen.

Gilt für:

Weitere Informationen