有什么方法可以在 QTableView 顶部显示文本行吗?

发布于 2024-11-06 06:09:49 字数 57 浏览 0 评论 0原文

我需要类似下图的东西,但我找不到使用 Qt 4.3.3 来做到这一点的方法...

I need something like on the picture below but I can't find a way to do it using Qt 4.3.3...

enter image description here

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

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

发布评论

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

评论(1

荒人说梦 2024-11-13 06:09:49

我认为没有内置函数可以做到这一点。最好的方法是子类化 QTableView 并重写绘制函数,以便在没有要显示的元素时绘制一些文本。使用槽

int rowCountChanged(int,int)

来找出行数何时为零。

I don't think there is a build-in function that does this . The best way to go is to subclass QTableView and override the draw function to draw some text when there are no elements to show .Use the slot

int rowCountChanged(int,int)

to find out when row count is zero.

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