如何更改 RichTextBox 中已输入的行?
如何更改 RichTextBox 控件上已附加或输入的行?
我想以编程方式在每行输入前面插入一个时间戳。 TextBox1.Lines[] 不允许更改。我尝试将自己的数组设置为 Lines[] 但似乎不起作用。
How does one change already appended or entered lines on the RichTextBox control?
I want to programmaticly insert a Timestamp in front of each line of input. TextBox1.Lines[] does not allow changes. I attempted to set my own array to Lines[] but didn't seems to work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 RichTextBox.GetFirstCharIndexFromLine() 方法查找插入文本的位置。例如:
Use the RichTextBox.GetFirstCharIndexFromLine() method to find out where to insert the text. For example: