WPF ListView ItemTemplate问题

时间:2009-12-04 21:12:52

标签: c# wpf data-binding listviewitem

假设我有以下类层次结构:

public static class Constants
{
    public enum MyEnum
    {
       Value1 =0,
       Value2,
       Value3
    }
}

public class Data : INotifyPropertyChanged
{
    public Data(string name, ushort id, Constants.MyEnum e)
    {
        DataName = name;
        DataId = id;
        DataEnum = e;
    }

    #region Properties
    // get / set implementation not shown
    public string DataName;
    public ushort DataId;
    public Constants.MyEnum DataEnum;
    #endregion

    // INotifyPropertyChanged implementation not shown
    // Fields implementation not shown
}

public class DataContainer
{
    public DataContainer()
    {
        ContainedData = new ObservableCollection<Data>();
        ContainedData.Add(new Data("data1", 1, Constants.MyEnum.Value1));
        ContainedData.Add(new Data("data2", 2, Constants.MyEnum.Value2));
        ContainedData.Add(new Data("data3", 3, Constants.MyEnum.Value3));
    }

    public ObservableCollection<Data> ContainedData;
}

我想将DataContainer的ContainedData数据绑定到ListView并创建一个包含以下内容的ItemTemplate:

              

我的目标:

  1. 我希望Combobox能够显示所有可能的MyEnum值
  2. 我希望Combobox实现对DataEnum字段的双向绑定
  3. 问题:

    1. 如何实现列出的目标?
    2. 数据属性的类型各不相同。对TextBox有用吗?如果是这样,我应该只将它们暴露为字符串吗?如何验证数据? (即确保用户未在DataId字段中传递“abc”等。)

1 个答案:

答案 0 :(得分:5)

要将MyEnum值转换为ItemsControl(如ComboBox),请参阅http://blogs.msdn.com/wpfsdk/archive/2007/02/22/displaying-enum-values-using-data-binding.aspx。要在ListView中的DataTemplate中显示它,您将使用CellTemplate属性:

<DataTemplate x:Key="DataEnumTemplate">
  <ComboBox ItemsSource="..." SelectedItem="{Binding DataEnum, Mode=TwoWay}" />
</DataTemplate>

<GridViewColumn CellTemplate="{StaticResource DataEnumTemplate" />

(其中ItemsSource是根据链接的文章)。

重新数据类型,TextBox.Text绑定将自动在文本字符串和ushort之间进行转换,如果字符串不可转换(例如“abc”),它将自动发出验证错误信号。