我正在尝试为 ListView 创建自定义 ItemContainerStyle 以便显示的文本是可选的。我正在寻找将 ItemsSource 设置为List<string>
. 如果我绑定到List<Person>
(with property Name
) 我可以做
<ListView.ItemContainerStyle>
<Style TargetType="{x:Type ListViewItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ListViewItem">
<StackPanel>
<TextBox Text="{Binding Path=Name}">
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ListView.ItemContainerStyle>
如何为 a 指定绑定List<T>
?