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.
我创建了一个带有多行文本框和一个确定按钮的窗口窗体。可以使用函数更改文本框的内容。public void SetTextBox(string box) { textbox.Text = box; }
它工作正常,唯一的问题是文本框中的完整文本在插入后被标记。我不明白为什么它被标记。
感谢您的帮助如何取消标记
标记是什么意思,如果你的意思是选中,试试这个。
textBox1.Select(0, 0);
第一个零是起始索引,第二个是目标索引,您还可以使用它来选择字符串上的特定索引
我觉得当调用该函数时您的文本框正在获得焦点,因此焦点使文本被选中或标记。
更改文本后尝试更改文本框的选项卡索引。