I can catch a single-click on a TextBlock like this:
private void TextBlock_MouseDown(object sender, MouseButtonEventArgs e) { MessageBo
You are simply can use MouseDown event and count click number, like this:
MouseDown
if (e.ChangedButton == MouseButton.Left && e.ClickCount == 2) { // your code here }