Is it possible to make the cursor invisible in a wxGrid?
I have a panel with a grid and several other controls. When the user is doing something in another control (i.e. the grid does not have the focus), it would make it more obvious where input is going if there was no cursor rectangle showing in the grid.
Is it possible to make the cursor invisible in a wxGrid?
I have a panel with a grid and several other controls. When the user is doing something in another control (i.e. the grid does not have the focus), it would make it more obvious where input is going if there was no cursor rectangle showing in the grid.
You can use the grid's SetCellHighlightPenWidth method to change the width of the line drawn for the cell cursor.
ยทยทยท
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!
Is it possible to make the cursor invisible in a wxGrid?
I have a panel with a grid and several other controls. When the user is doing something in another control (i.e. the grid does not have the focus), it would make it more obvious where input is going if there was no cursor rectangle showing in the grid.
You can use the grid's SetCellHighlightPenWidth method to change the width of the line drawn for the cell cursor.
Thank you. I wouldn't have thought of that in a million years.