I want to change textctrl cursor
cursor = wx.StockCursor(wx.CURSOR_CROSS)
self.SetCursor(cursor)
The above is change Mouse cursor.
···
–
jiang zhixiang
I want to change textctrl cursor
cursor = wx.StockCursor(wx.CURSOR_CROSS)
self.SetCursor(cursor)
The above is change Mouse cursor.
–
jiang zhixiang
Rill wrote:
I want to change textctrl cursor
cursor = wx.StockCursor(wx.CURSOR_CROSS)
self.SetCursor(cursor)The above is change Mouse cursor.
Do you mean the mean the little vertical bar that shows where the next
character would go? That is called the "caret".
If you are using a styled text control, you can change the color, width,
height, and blink rate of the caret. In a standard text control,
wxWidgets does not expose this ability.
--
Tim Roberts, timr@probo.com
Providenza & Boekelheide, Inc.
Yes, That is called the “caret”.
Search “caret” with wxpython, wx.StyledTextCtrl support modify caret.
But I only want to use textctrl, now I give up caret.
2014-06-13 1:20 GMT+08:00 Tim Roberts timr@probo.com:
Rill wrote:
I want to change textctrl cursor
cursor = wx.StockCursor(wx.CURSOR_CROSS)
self.SetCursor(cursor)
The above is change Mouse cursor.
Do you mean the mean the little vertical bar that shows where the next
character would go? That is called the “caret”.
If you are using a styled text control, you can change the color, width,
height, and blink rate of the caret. In a standard text control,
wxWidgets does not expose this ability.
–
Tim Roberts, timr@probo.com
Providenza & Boekelheide, Inc.
–
You received this message because you are subscribed to the Google Groups “wxPython-users” group.
To unsubscribe from this group and stop receiving emails from it, send an email to wxpython-users+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
–
jiang zhixiang