Remove text after clicking in the textbox

后端 未结 8 896
孤独总比滥情好
孤独总比滥情好 2021-02-02 18:03

When you activate an application, a textbox with text \"hello\" will appear.

My question is:
When you click on the textbox in order to make input data, I want to rem

8条回答
  •  -上瘾入骨i
    2021-02-02 18:36

    You have to implement both GetFocus and LostFocus events. In this way you can set the default text back in lost focus event if no text is entered.

    private const string defaultText = "Hello";
    
    private void myTextBox_GotFocus(object sender, RoutedEventArgs e)
    {
       myTextBox.Text = myTextBox.Text == defaultText ? string.Empty : myTextBox.Text;
    }
    
    private void myTextBox_LostFocus(object sender, RoutedEventArgs e)
    {
       myTextBox.Text = myTextBox.Text == string.Empty ? defaultText : myTextBox.Text;
    }
    

提交回复
热议问题