How to add an event when I click on a TextBlock?
wpf
Solution
Just use the "PreviewMouseDown" event. Good luck!
Problem
Can I know how to add an event when I click on a TextBlock? I can't find the onClick on the TextBlock. Does anyone know what is the name of the event? code: ``` <TextBlock Name="Title" Click="?" /> ```