iphone – Monotouch.Dialog – 设置后退按钮

我使用MonoTouch.Dialog DialogViewController创建一个漂亮的视图.

private RootElement _createRoot(){
    return new RootElement ("Buy a Property Report"){

            new Section (""){
                new StringElement ("View Sample", ()=>{ }),
                new StringElement ("Enter Address", ()=>{ }),
                new StringElement ("Locate This House", () => { }),
                new StringElement ("My Reports", () => { })
            } 
        };
}

在接下来的屏幕上,我需要一个与我之前在“购买房产报告”中指定的“家”不同的后退按钮

我这样做

public override void ViewDidLoad ()
{
    base.ViewDidLoad ();
        this.NavigationController.NavigationBar.TopItem.Title = "Home";
}

有没有办法在Monotouch.Dialog中执行此操作?

最佳答案 我不确定我是否理解你的问题,但尝试在对话框控制器上使用它:

this.NavigationItem.BackBarButtonItem.Title = "Home";
点赞