有什么方法可以在 QTableView 顶部显示文本行吗?
我需要类似下图的东西,但我找不到使用 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...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为没有内置函数可以做到这一点。最好的方法是子类化 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.