How do you auto highlight text in a textbox control when the control gains focus ?
C# auto highlight text in a textbox control Anonymous User 3189 13 Nov 2013 How do you auto highlight text in a textbox control when the control gains focus?
In Windows Forms and WPF:
textbox.SelectionStart = 0;
textbox.SelectionLength = textbox.Text.Length;
Hope this will solve your problem.