我创建了一个班级Account
接下来,我创建了另一个类ReorderWindowController
,其类型SelectedAccount
的字段/属性Account
。
最后,我写了ReorderWindow
WPF窗口xaml文件:
<Window ...
<Window.Resources>
<contollers:ReorderWindowController x:Key="WindowController" />
<DataTemplate DataType="{x:Type entities:Account}">
<Grid Width="140" Height="50" Margin="5">
<TextBlock Text="Some awesome text" />
<TextBlock Text="{Binding Name}" />
<TextBlock Text="Even more awesome text" />
</Grid>
</DataTemplate>
</Window.Resources>
<Grid>
<Grid
Name="AccountGrid"
DataContext="{Binding Source={StaticResource ResourceKey=WindowController},
Path=SelectedAccount}">
</Grid>
</Grid>
</Window>
当我运行我的代码时,AccountGrid
没有显示任何内容。为什么?如何将对象数据绑定到Grid
,如何使其使用我的数据模板?谢谢。
答案 0 :(得分:8)
而不是网格使用这样的ContentPresenter:
<Grid>
<ContentPresenter
Name="AccountGrid"
Content="{Binding Source={StaticResource ResourceKey=WindowController}, Path=SelectedAccount}">
</ContentPresenter>
</Grid>