作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在让 RefreshRequested 事件在我的一个实现 DialogViewController 的 ViewController 中工作时遇到了一些问题:
public CustomViewController () : base (null, true) {
RefreshRequested += delegate {
...
ReloadComplete ();
};
}
CustomViewController
从另一个 ViewController 像这样:
var dvc = new CustomViewController();
this.ActivateController(dvc);
最佳答案
您似乎没有 RootElement
指定,即设置为 null
由您自己的构造函数,因此您会收到警告,内部状态尚未准备好设置事件。
您应该创建一个空的 RootElement
使用您的构造函数,然后向其中添加内容(使用该属性)。这应该允许您在自己的构造函数中设置事件。例如。
public CustomViewController () : base (new RootElement (String.Empty), true)
Any pointers of what I am doing from here?
关于xamarin.ios - monotouch DialogViewController RefreshRequested "System.ArgumentException: You should set the handler before the controller is shown",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9369396/
我在让 RefreshRequested 事件在我的一个实现 DialogViewController 的 ViewController 中工作时遇到了一些问题: public CustomViewC
我是一名优秀的程序员,十分优秀!