wxPython wxListCtrl 选定行颜色
我希望将某些行选择为红色而不是标准颜色(窗口上为蓝色),以便我可以指示状态。 有人知道这在 wxPython 中是否可行吗?
I want to have certain rows selected color be red instead of the standard color (blue on windows) so that I can indicate status. Anyone know if this is possible in wxPython?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在从 wx.ListCtrl 派生的类中,查看一下重写
项目属性提前初始化的位置:
因此,在本例中,我将在默认属性和浅灰色属性之间交替背景颜色。
每行绘制时都会调用此函数,因此您可以使用它来指示各种状态。 如果选择行应该是一个简单的情况。
In your class that you derive from wx.ListCtrl, take a look at overriding
Where the item attributes are initialized ahead of time using:
So in this case, I'm alternating background colors between the default, and a light Gray attribute.
This function is called for each row as its painted, so you can use it to indicate all sorts of status. If row is selected should be an easy case.
为了做你想做的事,即在选择某些项目时有不同的选择颜色,你需要进入 win32。 幸运的是,在 python 中做到这一点并不难。 然而,它确实使您的代码依赖于平台。 今天在一个小程序中尝试了一下。 如果流派不是“摇滚”,我会将选择设置为橙色。 这是一些屏幕截图。
选定的摇滚项目
已选择混合项目。 请注意,RnB 和 Blues 是用 Orange 选择的
替代文本 http://img258.imageshack.us/img258/1307/soshot2.jpg< /a>
这是代码。 乍一看很吓人,但如果你了解任何 win32,那就没那么糟糕了。 我使用 pywin32 包和 std ctypes 库。 我必须定义一些 SDK 常量,因为它们在 win32con 模块中不可用。
In order to do what you want, i.e. have a different selection color when certain items are selected, you will need to drop into win32. Fortunately, it is not too hard to do that in python. It does however make your code platform dependent. I tried it out today in a small program. If the Genre is not "Rock" I make the selection orange. Here are some screenshots.
Rock Items Selected
Mixed Items Selected. Notice the RnB and Blues are selected with Orange
alt text http://img258.imageshack.us/img258/1307/soshot2.jpg
Here is the code. It looks scary at first but if you know any win32, its not that bad. I make use of the pywin32 package and the std ctypes libraries. I had to define some of the SDK constants as they were not available in the win32con module.