Переписать DataGrid-GroupStyle XAML в код C#
Может кто-нибудь переписать этот 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 ответа
Решение
Это должно сделать это:)
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;
Эта ссылка должна быть полезной: 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");
должен найти правильные ресурсы, если вы не делаете что-то особенное.