禁用父组件是否会影响其子组件?

发布于 2024-12-02 05:29:31 字数 158 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

翻身的咸鱼 2024-12-09 05:29:31

当您想要禁用 HBox 时,也尝试将 mouseChildren 和 mouseEnabled 设置为 false。这样,子项的点击也将被禁用。

myHBox.enabled = false;
myHBox.mouseChildren = false;
myHBox.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.

myHBox.enabled = false;
myHBox.mouseChildren = false;
myHBox.mouseEnabled = false;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文