Qt 框架中是否有与 Swing CardLayout 等效的组件?

发布于 2024-12-15 04:28:09 字数 106 浏览 2 评论 0原文

我正在使用 Qt 框架设计一个应用程序,我想避免使用多个对话框,因为我认为打开许多对话框会变得混乱。我想知道Qt框架中是否有类似Java的CardLayout的东西。

感谢您的帮助。

I am designing an Application using the Qt framework, and I want to avoid using multiple dialogs simply because I think it can get messy with having many dialogs open. I was wondering if there was something like Java's CardLayout in the Qt Framework.

Thanks for your help.

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

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

发布评论

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

评论(1

梦归所梦 2024-12-22 04:28:09

QStackedWidget 与 CardLayout 非常接近

QStackedWidget类提供了一堆小部件,其中只有一个
小部件一次可见。

添加任意数量的小部件,每次加载时,您都可以通过调用 setCurrentIndex

The QStackedWidget is very close to the CardLayout

The QStackedWidget class provides a stack of widgets where only one
widget is visible at a time.

Add as many widgets as you want and every time you load it you can change the widget that is displayed by calling the setCurrentIndex

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