0

我正在尝试为 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>

4

1 回答 1

1

只会<TextBox Text="{Binding Mode=OneWay}">做。

于 2012-05-28T05:10:32.703 回答