Я использую 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 вместо этого?