PyGtk 在滚动条上绘制标记
有没有办法在 PyGtk 中的滚动条“上方”绘制一些标记,例如在 Chrome 中使用搜索结果?
我在此常见问题解答中找到了一些帮助,但是我仍然需要在滚动条上放置一个绘图区域,它实际上是滚动窗口的一部分......
有什么想法吗?
Is there any way to draw some marks "over" a scrollbar in PyGtk as done, for example, in Chrome with the search results?
I found some help in this FAQ but I still need to place a drawing area over the scrollbar which is, in fact, part of a scrolledwindow...
Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要在滚动条上放置绘图区域 - 只需在
do_expose_event
处理程序中进行绘图即可。You don't need to put a drawing area on the scrollbar - just do your drawing in the
do_expose_event
handler.