我正在尝试创建一个可绑定的RadioElement,以便在MvvmCross中的MonoTouch.Dialog实现中使用,并且按照https://github.com/MvvmCross/MvvmCross-Tutorials/tree/master/DialogExamples/DialogExamples.Touch/BindableElements中的模式(如MvvmCross Monotouch.Dialog将数据绑定到表中的建议),我创建了以下类:
public class MvxBindableRadioElement : RadioElement, IBindableElement
{
public IMvxBindingContext BindingContext { get; set; }
public MvxBindableRadioElement ()
{
this.CreateBindingContext();
this.DelayBind(() => {
var set = this.CreateBindingSet<MvxBindableRadioElement, PropertyCategory>();
set.Bind().For(me => me.Caption).To(p => p.Id);
set.Bind().For(me => me.Value).To(p => p.Value);
set.Apply();
});
}
protected override void Dispose(bool disposing)
{
if (disposing) {
BindingContext.ClearAllBindings();
}
base.Dispose(disposing);
}
public virtual object DataContext
{
get { return BindingContext.DataContext; }
set { BindingContext.DataContext = value; }
}
}PropertyCategory是一个基本模型:
public class PropertyCategory
{
public int Id { get; set; }
public string Value { get; set; }
}这一用途如下:
new Section {
new RootElement ("Category", new RadioGroup ()) {
new BindableSection<MvxBindableRadioElement> ().Bind(bindings, e => e.ItemsSource, vm => vm.PropertyCategories)
}.Bind (bindings, e => e.RadioSelected, vm => vm.PropertyCategory) as Element
}其中BindableSection是从上面提到的MvvmCross回购中提取的。
调试我能够验证MvxBindableSection的MvxBindableSection变量是否正确地填充了MvxBindableRadioElement,但是在执行TableView.ReloadData()行时会发生以下错误:
MvxBind:Error: 12.12 Problem seen during binding execution for binding ItemsSource for PropertyCategories - problem TargetInvocationException: Exception has been thrown by the target of an invocation.
at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0005c] in /Developer/MonoTouch/Source/mono/mcs/class/corlib/System.Reflection/MonoMethod.cs:238
at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in /Developer/MonoTouch/Source/mono/mcs/class/corlib/System.Reflection/MethodBase.cs:114
at Cirrious.MvvmCross.Binding.Bindings.Target.MvxPropertyInfoTargetBinding.SetValueImpl (System.Object target, System.Object value) [0x00000] in <filename unknown>:0
at Cirrious.MvvmCross.Binding.Bindings.Target.MvxConvertingTargetBinding.SetValue (System.Object value) [0x00000] in <filename unknown>:0
at Cirrious.MvvmCross.Binding.Bindings.MvxFullBinding.UpdateTargetFromSource (System.Object value) [0x00000] in <filename unknown>:0
InnerException was NullReferenceException: Object reference not set to an instance of an object
at <redacted>.iOS.Views.MvxBindableSection`1[<redacted>.Views.MvxBindableRadioElement].NotifyDataSetChanged () [0x000b9] in <redacted>/MonoTouch.Dialog/MvxBindableSection.cs:87
at <redacted>.iOS.Views.MvxBindableSection`1[<redacted>.Views.MvxBindableRadioElement].SetItemsSource (IEnumerable value) [0x00094] in <redacted>/MonoTouch.Dialog/MvxBindableSection.cs:56
at <redacted>.iOS.Views.MvxBindableSection`1[<redacted>.Views.MvxBindableRadioElement].set_ItemsSource (IEnumerable value) [0x00003] in <redacted>/MonoTouch.Dialog/MvxBindableSection.cs:30
at (wrapper managed-to-native) System.Reflection.MonoMethod:InternalInvoke (System.Reflection.MonoMethod,object,object[],System.Exception&)
at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00044] in /Developer/MonoTouch/Source/mono/mcs/class/corlib/System.Reflection/MonoMethod.cs:230对此进行故障排除后,我从上面提到的MvxBindableRadioElement回购中用CustomStringElement替换了MvvmCross:
new MvxBindableSection<CustomStringElement>().Bind(bindings, element => element.ItemsSource, vm => vm.PropertyCategories)这就像一种魅力。为什么CustomStringElement可以工作,而MvxBindableRadioElement却不能工作?我必须创建一个可绑定的RadioGroup来包装MvxBindableRadioElement吗?
编辑:
下面是内部异常(NullReferenceException):
at CrossUI.Touch.Dialog.Elements.RadioElement.SubscribeToRoot () [0x00000] in <filename unknown>:0
at CrossUI.Touch.Dialog.Elements.RadioElement.GetCellImpl (MonoTouch.UIKit.UITableView tv) [0x00000] in <filename unknown>:0
at CrossUI.Touch.Dialog.Elements.Element.GetCell (MonoTouch.UIKit.UITableView tv) [0x00000] in <filename unknown>:0
at CrossUI.Touch.Dialog.DialogViewController+Source.GetCell (MonoTouch.UIKit.UITableView tableView, MonoTouch.Foundation.NSIndexPath indexPath) [0x00000] in <filename unknown>:0
at (wrapper managed-to-native) MonoTouch.UIKit.UIApplication:UIApplicationMain (int,string[],intptr,intptr)
at MonoTouch.UIKit.UIApplication.Main (System.String[] args, System.String principalClassName, System.String delegateClassName) [0x0004c] in /Developer/MonoTouch/Source/monotouch/src/UIKit/UIApplication.cs:38
at PGPCapture.iOS.Application.Main (System.String[] args) [0x00008] in <redacted>/Main.cs:21 发布于 2014-05-29 13:01:15
所以问题在于BindableSection的实现(取自MvvmCross教程/ DialogExamples):除非使用AddAll()添加元素,否则不会设置Section元素的Parent (即是null)。这个问题实际上发生在MT.Dialog本身的肠子里。
更新的MvxBindableSection是可用的这里。
https://stackoverflow.com/questions/23695850
复制相似问题