2

誰かがこの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)));
4

2 に答える 2

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;
于 2010-11-06T11:29:24.697 に答える
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");

編集:
コンテナを正しく取得するには、リソースからコンテナを取得する必要があります。これらは、ウィンドウリソース、またはアプリケーション全体のリソースのいずれかです。Application.Current.Resources.FindName("GroupHeaderStyle");何か特別なことをしているのでない限り、正しいリソースを見つける必要があると思います。

于 2010-11-06T11:03:28.930 に答える