PushRootElement() public method

public PushRootElement ( RootElement root ) : void
root RootElement
return void
コード例 #1
0
ファイル: RootElement.cs プロジェクト: yys/MonoMobile.Forms
 public override void Selected(DialogViewController dvc, UITableView tableView, NSIndexPath path)
 {
     if (this.Sections.Count() > 0)
     {
         dvc.PushRootElement(this);
     }
 }
コード例 #2
0
		public override void Selected (DialogViewController dvc, UITableView tableView, NSIndexPath path)
		{
			dvc.PushRootElement(this);
		}
コード例 #3
0
ファイル: RootElement.cs プロジェクト: escoz/MonoMobile.Forms
		public override void Selected (DialogViewController dvc, UITableView tableView, NSIndexPath path)
		{
			if (this.Sections.Count()>0)
				dvc.PushRootElement(this);
		}