如何合并band和column?

时间:2016-01-29 08:54:48

标签: c# wpf devexpress devexpress-wpf

我是devexpress和WPF的新手,但我需要用乐队制作网格。我将说明2图:第一 - 我做了什么,第二 - 我必须做什么,但不知道如何做。注意第一栏 enter image description here enter image description here

这是第一个pict网格的代码:

<Window xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"  x:Class="DbExpressTest.MainView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:DbExpressTest"
    xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"
    mc:Ignorable="d"
    Title="MainView" Height="350" Width="800">
<Window.DataContext>
    <local:MainViewModel/>
</Window.DataContext>
<Grid>
    <dxg:GridControl ItemsSource="{Binding Path=Cars}" AutoGenerateColumns="AddNew" EnableSmartColumnsGeneration="True">
        <dxg:GridControl.Bands>
            <dxg:GridControlBand>
                <dxg:GridColumn Header="New Column"></dxg:GridColumn>
            </dxg:GridControlBand>

            <dxg:GridControlBand Header="Cars" HorizontalHeaderContentAlignment="Center">
                <dxg:GridColumn FieldName="Name" Header="Name"/>
                <dxg:GridColumn FieldName="Year" Header="Year"/>
                <dxg:GridColumn FieldName="Type" Header="Type"/>
            </dxg:GridControlBand>
            <dxg:GridControlBand>
                <dxg:GridColumn FieldName="Owner" Header="Owner"></dxg:GridColumn>
            </dxg:GridControlBand>
        </dxg:GridControl.Bands>
        <dxg:GridControl.View>
            <dxg:TableView AllowPerPixelScrolling="True" ShowTotalSummary="True"/>
        </dxg:GridControl.View>
    </dxg:GridControl>

</Grid>

2 个答案:

答案 0 :(得分:0)

我找到了解决方案.....只需将“ShowColumnHeaders”添加到表视图中,并显示“False”值!

...
<dxg:GridControl.View>
    <dxg:TableView AllowPerPixelScrolling="True" ShowTotalSummary="True" ShowColumnHeaders="False"/>
</dxg:GridControl.View>
....

答案 1 :(得分:0)

您可以在以下地址找到答案:How to Merge Band-Header with Column-Header

enter image description here