WPF Binding: How to databind to Grid?
问题 I have created a class Account . Next, I have created another class ReorderWindowController which has a field/property SelectedAccount of type Account . Finally, I have written ReorderWindow WPF window xaml file: <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=