a 如何DataTemplate
应用于 a Grid
?
我的文件中有一个DataTemplate
名为DataGrid_Template的Resources.xaml
文件,我想将它应用到Grid
View.xaml中。
资源.xaml
<ResourceDictionary ... >
<DataTemplate x:Key="DataGrid_Template">
<Grid>
<Grid.RowDefinitions ... />
<DockPanel ... />
<DataGrid ... />
</Grid>
</DataTemplate>
</ResourceDictionary>
查看.xaml
<UserControl ... >
<Grid /> <!-- want to apply DataGrid_Template to this -->
</UserControl>
我尝试使用该Grid
属性 TemplatedParent
,但这似乎是一个只读属性。