cxgrid 表视图中的表标题组
我需要根据 Delphi 中的查询向 Tableview 添加一个简单的样式。我需要它看起来像这样:
我知道有一种按字段分组的方法,但我可以'似乎不知道如何将 2 个主要标题字段添加到表的标题中。
I need to add a simple style to a Tableview based on a query in Delphi. I need it to look like this:
I know there's a way to group by fields, but I can't seem to figure out how to add the 2 main title fields to the header of the table.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可以使用 BandedTableView 来完成。此视图允许您按带区排列列(在您的情况下,将有两个带区:主标题 1 和主标题 2。注意,在此视图中不可能显示没有带区的列。因此,您还将拥有为 Prim_Key 列创建附加区域。
This can be done using the BandedTableView. This view allows you to arrange columns by Bands (in your case, there will be two bands: Main title1 and Main title 2. NOTE, that it is impossible to show a column without a band in this view. So, you will also have to create an additional band for the Prim_Key column.
我会做这样的事情
首先清除网格中的带
然后创建标题带
然后将列连接到带索引
I would do something like this
First Clear the bands in your grid
You then create the header bands
You then hook up your columns to the Bands index