如何将 HIViewRef 作为子视图/视图添加到新的 Carbon 窗口?

发布于 2024-11-09 04:42:57 字数 191 浏览 3 评论 0原文

我使用 CreateNewWindow() 创建了一个 Carbon 窗口,它将返回一个 WindowRef。 我创建了一个 HIViewRef,现在我想将其添加到新创建的 WindowRef 中。

谁能帮我解决这个问题吗?如何将 HIViewRef 添加到没有任何子视图的 WindowRef 中?

谢谢,

黛拉吉。

I created a Carbon window using CreateNewWindow() which will return me a WindowRef.
I create a HIViewRef and now I want to add it to the newly created WindowRef.

Can anyone please help me with this issue? How can I add HIViewRef to a WindowRef which does not have any subviews?

Thanks,

Dheeraj.

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

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

发布评论

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

评论(1

请止步禁区 2024-11-16 04:42:57

HIViewRef 和 ControlRef 是相同的,因此要将 HIViewRef 添加到 WindowRef,您可以使用类似以下内容的内容:

HIViewRef root_control;
GetRootControl (winref, &root_control);
HIViewAddSubview(root_control, hiview);

HIViewRef and ControlRef are the same, so to add HIViewRef to WindowRef you could use something like:

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