禁用父组件是否会影响其子组件?
我在 HBox
中有很多按钮。 我没有禁用每个按钮,而是禁用了 HBox
。但即使 HBox
被禁用,我仍然可以单击按钮。 禁用父组件不会对其子组件产生影响吗?它显示为已禁用,但会生成鼠标事件。 请问您能给我一些建议吗?...
I have many buttons in HBox
.
Instead of disabling each button, I've disabled HBox
. But I am able to click buttons even though the HBox
is disabled.
Disabling parent component will not make difference on its child? it shows like disabled but mouse events will generate.
Please can you give me any suggestions?..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您想要禁用 HBox 时,也尝试将 mouseChildren 和 mouseEnabled 设置为 false。这样,子项的点击也将被禁用。
try also setting the mouseChildren and mouseEnabled to false when you want to have your HBox disabled. That way, clicking of children will also be disabled.