这可能是一个愚蠢的问题,但是否可以将一些示例数据定义为 DataContext 以便在 DesignView 中查看我的 DataTemplate?
目前我总是必须运行我的应用程序来查看我的更改是否有效。
例如,使用以下代码 DesignView 只显示一个空列表框:
<ListBox x:Name="standardLayoutListBox" ItemsSource="{Binding myListboxItems}">
<ListBox.ItemTemplate>
<DataTemplate>
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Label Grid.Column="0" Content="{Binding text1}" />
<Label Grid.Column="1" Content="{Binding text2}" />
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>