Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为了在文本框中选择文本,您需要专注于它。问题是,在聚焦并选择第二个文本框后,它会取消选择第一个文本框中的文本。
有没有人有解决方法?
任何帮助将非常感激。
将 的HideSelection属性设置TextBox为false。
HideSelection
TextBox
false
myTextBox.HideSelection = false;
当然,您也可以在属性窗口中执行此操作(在该Behavior部分中)。
Behavior