如何在 GTK 中为 GtkToggleButton 设置组(如 GtkRadioButton 那样)?
如何在 GTK+ 中为 GtkToggleButton 设置组(如 GtkRadioButton 那样)?我可以使用哪些属性来实现此目的。我想检查设置绘图基元(矩形、椭圆形等)的按钮
How to set group (like that for GtkRadioButton) for GtkToggleButton in GTK+ ? What is the properties i can use for this aim. I want to check buttons, which set the drawing primitive (rectangle, ellipse, etc)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解你的问题,你想要一组按钮,一次只能打开一个,但看起来像常规按钮而不是单选按钮。
使用单选按钮,并将它们像往常一样添加到组中,但将
draw-indicator
属性设置为FALSE
。它们将像普通按钮一样绘制。If I understand your question correctly, you want to have a group of buttons where only one can be turned on at a time, but looking like regular buttons instead of radio buttons.
Use radio buttons, and add them to a group as usual, but set the
draw-indicator
property toFALSE
. They will be drawn like regular buttons.