如何在状态栏上的文本框中显示行位置?
我添加了一个 StatusStrip
控件,并在其中放置了一个 StatusLabel
。但现在我想知道如何将它连接到我的 TextBox 以显示行号和光标位置,例如:“第 2 行,第 6 行”。
谢谢
I have added a StatusStrip
control and placed a StatusLabel
inside of it. But now I want to know how to connect it to my TextBox to show the line number and position of the cursor, like: "Line 2, Row 6".
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
获取文本框中插入符号的索引:
C#
VB.NET
从插入符号索引中获取行号:
C#
VB.NET
获取当前行中的字符索引:
C#
VB.NET
我想你可以从这里继续...
Get the index of the caret in the TextBox:
C#
VB.NET
Get the line number from the caret index:
C#
VB.NET
Get the character index in the current line:
C#
VB.NET
I guess you can continue from here ...