将DataGrid-GroupStyle XAML重写为C#代码

时间:2010-11-06 10:54:41

标签: c# wpf xaml datagrid groupstyle

有人可以将此XAML重写为C#代码吗?

<DataGrid.GroupStyle>
                <GroupStyle ContainerStyle="{StaticResource GroupHeaderStyle}">
                    <GroupStyle.Panel>
                        <ItemsPanelTemplate>
                            <DataGridRowsPresenter/>
                        </ItemsPanelTemplate>
                    </GroupStyle.Panel>
                </GroupStyle>
 </DataGrid.GroupStyle>

我尝试了这个,但它不起作用:

// Setup Grouping
            GroupStyle groupStyle = new GroupStyle();
            groupStyle.ContainerStyle.Resources.FindName("GroupHeaderStyle");
            groupStyle.Panel = new DataGridRowsPresenter();

无法让最后一行工作......

更新:

 // Setup Grouping
            GroupStyle groupStyle = new GroupStyle();  
            groupStyle.ContainerStyle.Resources.FindName("GroupHeaderStyle");
            groupStyle.Panel = new ItemsPanelTemplate(new FrameworkElementFactory(typeof(DataGridRowsPresenter)));

2 个答案:

答案 0 :(得分:1)

这应该这样做:)

FrameworkElementFactory datagridRowsPresenter = new FrameworkElementFactory(typeof(DataGridRowsPresenter));
ItemsPanelTemplate itemsPanelTemplate = new ItemsPanelTemplate();
itemsPanelTemplate.VisualTree = datagridRowsPresenter;
GroupStyle groupStyle = new GroupStyle();
groupStyle.Panel = itemsPanelTemplate;
dataGrid.GroupStyle.Add(groupStyle);

Uri resourceLocater = new Uri("/YourAssemblyName;component/SubDirectory/YourFile.xaml", System.UriKind.Relative);
ResourceDictionary resourceDictionary = (ResourceDictionary)Application.LoadComponent(resourceLocater);
groupStyle.ContainerStyle = resourceDictionary["GroupHeaderStyle"] as Style;

答案 1 :(得分:0)

此链接必须有用:http://www.netframeworkdev.com/windows-presentation-foundation-wpf/setting-an-itemscontrolpanels-content-from-code-86898.shtml

顺便说一下,你可能想要

groupStyle.ContainerStyle = Resources.FindName("GroupHeaderStyle");

而不是

groupStyle.ContainerStyle.Resources.FindName("GroupHeaderStyle");

编辑:
为了使容器正确,您需要从资源中获取容器。这些是Window资源或应用程序范围的资源。我想Application.Current.Resources.FindName("GroupHeaderStyle");应该找到正确的资源,除非你做了一些特别的事情。