Currently in my WPF app I have a multiple textbox readonly. So the user can select text and then Ctrl+C Ctrl+V. But I want to make this task more simple :
- If the user just left click on the textbox (or another control that display my text), all the text is copy to clipboard
But the user still has the possibility to select the text as before
Any idea to do that in a XAML style ?
It is solve, I will automatically copy to clipboard any text selected. Knowing that if you doubleclick on a textbox it select all text, the user will just have to doubleclick to copy all the text in his clipboard.