我正在使用一個應該改變分組字段的combox的datagrid。我用下面的XAML定義一般分組模板:WPF Datagrid組擴展文本 - 如何綁定?
<DataGrid.GroupStyle>
<GroupStyle>
<GroupStyle.ContainerStyle>
<Style TargetType="{x:Type GroupItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type GroupItem}">
<Expander>
<Expander.Header>
<StackPanel Orientation="Horizontal">
<TextBlock Text="NEEDS TO BE BINDED..."/>
</StackPanel>
</Expander.Header>
<ItemsPresenter />
</Expander>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</GroupStyle.ContainerStyle>
</GroupStyle>
</DataGrid.GroupStyle>
我只需要能夠擴展內「到達」是TextBlock中能夠選擇的分組應用的輸出。
請幫助....
謝謝。我終於使用了不同的方法,因爲我需要手動獲取更多信息。我發佈了我的解決方案。 – OrPaz 2010-08-03 09:27:25
我確認這是有效的,並且是正確的方法。 – Benlitz 2011-10-11 15:26:20