WPF绑定:如何数据绑定到网格?

时间:2010-12-20 20:10:08

标签: wpf data-binding grid binding

我创建了一个班级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,如何使其使用我的数据模板?谢谢。

1 个答案:

答案 0 :(得分:8)

而不是网格使用这样的ContentPresenter:

<Grid>         
<ContentPresenter
Name="AccountGrid"              
Content="{Binding Source={StaticResource ResourceKey=WindowController},                           Path=SelectedAccount}">  
   </ContentPresenter>
</Grid>