WPF TextBoxクリックでSelectAll

TextBoxをマウスでクリックしたときにTextBox内のすべてのテキストを選択した状態にする。

public MouseClick()
{
    InitializeComponent();

    // SelectAll 
    // イベントの追加
    textBox.AddHandler(TextBox.MouseLeftButtonDownEvent, new MouseButtonEventHandler(textBox_MouseLeftButtonDownEvent), true);
}

private void textBox_MouseLeftButtonDownEvent(object sender, MouseButtonEventArgs e)
{
    textBox.SelectAll();
}

 

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください