Beispiel #1
0
 public DeskEditorView(Desk desk)
 {
     __presenter = new DeskEditorPresenter(this, desk);
     this.View.BackgroundColor = UIColor.White;
     this.NavigationItem.HidesBackButton = true;
     this.EdgesForExtendedLayout = UIRectEdge.None;
     this.Title = string.Format("Edit \"{0}\"", desk.Name);
 }
Beispiel #2
0
 public DeskEditorView()
 {
     __presenter = new DeskEditorPresenter(this);
     this.View.BackgroundColor = UIColor.White;
     this.NavigationItem.HidesBackButton = true;
     this.EdgesForExtendedLayout = UIRectEdge.None;
     this.Title = "Create desk";
 }