我是devexpress和WPF的新手,但是我需要与乐队建立网格。我将举例说明2图:第一-我做了什么,第二-我必须做,但是不知道如何做。注意第一列
这是第一个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>
最佳答案
我找到了解决方法.....只需将“ ShowColumnHeaders”添加到具有“ False”值的表视图中!
...
<dxg:GridControl.View>
<dxg:TableView AllowPerPixelScrolling="True" ShowTotalSummary="True" ShowColumnHeaders="False"/>
</dxg:GridControl.View>
....
关于c# - 如何合并乐队和专栏?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35080403/