我在 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 的填充方式?