动态添加Tab

发布于 2024-08-18 13:06:26 字数 135 浏览 3 评论 0原文

我有一个选项卡,并且想要通过单击按钮获得另一个选项卡。 另一个选项卡有 VBox(包含图表、网格等)。 单击按钮时添加代码 addChild()、removeChild() 时出现错误。 错误是空对象引用。

请建议我。

谢谢

I have a tab and want another tab with click of button.
Another tab has VBox (Contains charts,grid etc).
It gives an error while adding code addChild(), removeChild() on button click.
The error is of null object reference.

Please suggest me.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

灰色世界里的红玫瑰 2024-08-25 13:06:26

您可能正在尝试访问尚未初始化的选项卡的子选项卡。最简单的解决方案是将 TabNavigator 的creationPolicy 属性更改为“all”。

您可以在以下位置查看creationPolicy 的说明 Adobe 文档。

如果这不是解决方案,您可能需要发布更具体的代码。

You're probably trying to access children of a tab that has not been initialized yet. The simplest solution is to change the creationPolicy property of your TabNavigator to "all".

You can see an explanation of creationPolicy in the Adobe documentation.

If this is not the solution, you're probably going to have to post more specific code.

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