有人可以将此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)));
答案 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)
groupStyle.ContainerStyle = Resources.FindName("GroupHeaderStyle");
而不是
groupStyle.ContainerStyle.Resources.FindName("GroupHeaderStyle");
编辑:
为了使容器正确,您需要从资源中获取容器。这些是Window资源或应用程序范围的资源。我想Application.Current.Resources.FindName("GroupHeaderStyle");
应该找到正确的资源,除非你做了一些特别的事情。