2

我在 WP7 中构建简单的 crud 表单时遇到问题。我花了很多时间将枚举显示到列表选择器中,现在我在尝试绑定到 (IsolatedStorage) 对象时看到了 InvalidCastException。

public class Bath {
   public string Colour { get; set; }
   public WaterType WaterType { get; set; }
}

public enum WaterType {
   Hot,
   Cold
}

枚举绑定到 ListPicker,但由于 WP7 中没有 enum.GetValues(),这不是一项简单的任务。

我有一个简单的类型类...

public class TypeList
    {
        public string Name { get; set; }
    }

在我的视图模型中,我有 ObservableCollection 并模拟枚举中的值......

    private ObservableCollection<TypeList> _WaterTypeList;
    public ObservableCollection<TypeList> WaterTypeList
    {
        get { return _WaterTypeList; }
        set
        {
            _WaterTypeList= value;
            NotifyPropertyChanged("WaterTypeList");
        }
    }

    public void LoadCollectionsFromDatabase()
    {
        ObservableCollection<TypeList> wTypeList = new ObservableCollection<WaterTypeList>();
        wTypeList.Add(new TypeList{ Name = WaterType.Hot.ToString() });
        wTypeList.Add(new TypeList{ Name = WaterType.Income.ToString() });
        WaterTypeList = new ObservableCollection<TypeList>(wTypeList);
    }

最后,我的 xaml 包含列表框...

<toolkit:ListPicker
            x:Name="BathTypeListPicker"
            ItemsSource="{Binding WaterTypeList}"
            DisplayMemberPath="Name">
        </toolkit:ListPicker>

我不确定以上是否是最佳实践,以及以上是否是问题的一部分,但以上确实给了我一个填充的 ListPicker。

最后,当提交表单时,强制转换会导致 InvalidCastException。

 private void SaveAppBarButton_Click(object sender, EventArgs e)
{
    var xyz = WaterTypeList.SelectedItem; // type AppName.Model.typeList

        Bath b = new Bath
        {
            Colour = ColourTextBox.Text ?? "Black",
            WaterType = (WaterType)WaterTypeListPicker.SelectedItem
        };

        App.ViewModel.EditBath(b);
        NavigationService.Navigate(new Uri("/Somewhere.xaml", UriKind.Relative));
    }
}

有没有人遇到过类似的问题,可以提供建议。我看到我的选择是专注于从 ListPicker 中投射一些有意义的东西,还是我应该重新考虑 ListPicker 的填充方式?

4

2 回答 2

3

据我所见, WaterTypeList 是一个 ObservableCollection ,它是一种类型,并且可观察集合没有 SelectedItem 属性。

您的 Bath 类有一个接受 WaterType 属性的 WaterType,并且您正在尝试将 WaterTypeListPicker.SelectedItem 投射到它。所以我假设您的 WatertypeListPicker 是您的 ListBox?

如果是,那么您做错了,因为您的 ListBox 的 itemssource 已绑定到一个类,并且您正试图将 a 添加到您的 WaterType 属性。

我会说,

Bath b = new Bath
        {
            Colour = ColourTextBox.Text ?? "Black",
            WaterType = WaterTypeListPicker.SelectedItem
        };

将我的 Bath 的WaterType属性更改为TypeList,这样上面的代码就可以工作了。但是我不建议做另一个类来包装枚举只是为了将它显示给列表框。

我要做的是创建一个 EnumHelper

public static class EnumExtensions
{
    public static T[] GetEnumValues<T>()
    {
        var type = typeof(T);
        if (!type.IsEnum)
            throw new ArgumentException("Type '" + type.Name + "' is not an enum");

        return (
          from field in type.GetFields(BindingFlags.Public | BindingFlags.Static)
          where field.IsLiteral
          select (T)field.GetValue(null)
        ).ToArray();
    }

    public static string[] GetEnumStrings<T>()
    {
        var type = typeof(T);
        if (!type.IsEnum)
            throw new ArgumentException("Type '" + type.Name + "' is not an enum");

        return (
          from field in type.GetFields(BindingFlags.Public | BindingFlags.Static)
          where field.IsLiteral
          select field.Name
        ).ToArray();
    }
}

并将其绑定到集合

我的视图模型

public IEnumerable<string> Priority
        {
            get { return EnumExtensions.GetEnumValues<Priority>().Select(priority => priority.ToString()); }

public string SelectedPriority
        {
            get { return Model.Priority; }
            set { Model.Priority = value; }
        }

像那样。

我的XAML

<telerikInput:RadListPicker SelectedItem="{Binding SelectedPriority, Mode=TwoWay}" ItemsSource="{Binding Priority}" Grid.Column="1" Grid.Row="4"/>
于 2012-07-17T03:08:43.563 回答
1

WaterTypeListPicker.SelectedItem是 type 的对象,因此TypeList不能转换为 type 的对象WaterType

为了转换回 WaterType,您可以替换您的演员:

WaterType = (WaterType)WaterTypeListPicker.SelectedItem

和:

WaterType = (WaterType)Enum.Parse(
                               typeof(WaterType),
                               ((TypeList)WaterTypeListPicker.SelectedItem).Name,
                               false)
于 2012-07-17T08:52:26.283 回答