我说ListView有一个简单的ItemTemplate
<ListView ItemsSource="{x:Bind ListItems}">
<ListView.ItemTemplate>
<DataTemplate x:DataType="local:TextItem">
<TextBlock Text="{x:Bind Item}"/>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
MainPage.xaml
当我运行应用程序时,我得到一个填充了TextBlocks的ListView - 一个用于ListItems
中的每个项目(这是后面定义的变量)。但是,在XAML设计师中,我什么也看不见。
那么,有没有办法在XAML设计器中预览ItemTemplate / DataTemplate,并使用占位符文本替换Text="{x:Bind Item}"
的一组占位符TextBlocks?或者只预览一个TextBlock?
这不是
的副本Design View of a DataTemplate in a ResourceDictionary in Visual Studio - 因为我无法使用Blend。我所看到的所有内容都表示以某种方式使用Blend只是给我一个信息'此功能不适用于面向“Windows 10 Fall Creators Update(10.0; Build 16299)”的项目“
Can I preview my DataTemplate(s) in my collection-based controls in the designer? - 好吧,也许是,但我不明白已接受的答案,现在已有几年了。包含根据我的问题量身定制的示例的答案将非常有用。