コード例 #1
0
ファイル: MonkeyView.cs プロジェクト: conceptdev/TaskCloud
 public override void MovedToSuperview()
 {
     base.MovedToSuperview();
     if (this.Superview is PlayGroundView)
     {
         CurrentPlayground = (PlayGroundView)this.Superview;
     }
 }
コード例 #2
0
		public override void LoadView ()
		{
            View = PlayGroundView = new PlayGroundView ();
            if (new Version(MonoTouch.Constants.Version) < new Version(7,0,0)) return;
            NavigationController.NavigationBar.TintColor = UIColor.FromRGB (0.564f, 0.0f, 0.015f);
            EdgesForExtendedLayout = UIRectEdge.None;
            NavigationController.NavigationBar.Translucent = false;
            NavigationController.NavigationBar.Opaque = true;
            NavigationController.NavigationBarHidden = true;
		}
コード例 #3
0
 public override void LoadView()
 {
     View = PlayGroundView = new PlayGroundView();
     if (new Version(MonoTouch.Constants.Version) < new Version(7, 0, 0))
     {
         return;
     }
     NavigationController.NavigationBar.TintColor = UIColor.FromRGB(0.564f, 0.0f, 0.015f);
     EdgesForExtendedLayout = UIRectEdge.None;
     NavigationController.NavigationBar.Translucent = false;
     NavigationController.NavigationBar.Opaque      = true;
     NavigationController.NavigationBarHidden       = true;
 }
コード例 #4
0
 public override void LoadView()
 {
     View = PlayGroundView = new PlayGroundView();
 }
コード例 #5
0
 public override void LoadView()
 {
     View = PlayGroundView = new PlayGroundView ();
 }
コード例 #6
0
		public override void MovedToSuperview ()
		{
			base.MovedToSuperview ();
			if (this.Superview is PlayGroundView)
				CurrentPlayground = (PlayGroundView)this.Superview;
		}