wxpython textctrl 如何找出文本指针在哪里

发布于 2024-11-30 02:07:29 字数 80 浏览 1 评论 0原文

我需要知道文本指针(闪烁线)在 textctrl 中的位置。我还想知道是否可以获取指针所在的整行,或者我是否只需编写代码即可从指针位置获取当前行。

I need to know where the text pointer (blinking line) is in the textctrl. I would also like to know if it is possible to get the entire line that the pointer is on, or if I would just have to write the code to get the current line from the pointer position.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风筝有风,海豚有海 2024-12-07 02:07:29

您可以使用GetInsertionPoint()来查找光标的当前位置。您可以使用: len( self.LogWindow.GetRange( 0, self.LogWindow.GetInsertionPoint() ).split("\n") ) 获取行号本身。

然后你可以使用:
GetLineText() 获取整行文本...

那么:

curPos = self.LogWindow.GetInsertionPoint
lineNum = self.LogWindow.GetRange( 0, self.LogWindow.GetInsertionPoint() ).split("\n")
lineText = self.LogWindow.GetLineText(lineNum)

理论上应该可行...?

看看这个...

You can use GetInsertionPoint() to find the current position of the cursor. You can use: len( self.LogWindow.GetRange( 0, self.LogWindow.GetInsertionPoint() ).split("\n") ) to get the line number itself.

And then you can use:
GetLineText() to get the entire line of text...

So:

curPos = self.LogWindow.GetInsertionPoint
lineNum = self.LogWindow.GetRange( 0, self.LogWindow.GetInsertionPoint() ).split("\n")
lineText = self.LogWindow.GetLineText(lineNum)

In thoery that should work...?

Check This Out...

無心 2024-12-07 02:07:29

您可以使用 PositionToXY() 找出给定插入点的行号,而不是寻找或计数 \n

lineNum = self.LogWindow.PositionToXY(curPos)[1]   # lineNum is the y coord from PosToXY()

You can use PositionToXY() to find out the line number of a given insertion point, rather than hunting for or counting \ns.

lineNum = self.LogWindow.PositionToXY(curPos)[1]   # lineNum is the y coord from PosToXY()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文