void ReleaseDesignerOutlets ()
		{
			if (MainTabBar != null) {
				MainTabBar.Dispose ();
				MainTabBar = null;
			}
		}
예제 #2
0
 void ReleaseDesignerOutlets()
 {
     if (tabBar != null) {
         tabBar.Dispose ();
         tabBar = null;
     }
 }
예제 #3
0
 void ReleaseDesignerOutlets()
 {
     if (MainTabBar != null)
     {
         MainTabBar.Dispose();
         MainTabBar = null;
     }
 }
예제 #4
0
 void ReleaseDesignerOutlets()
 {
     if (TabBar != null)
     {
         TabBar.Dispose();
         TabBar = null;
     }
 }
		void ReleaseDesignerOutlets ()
		{
			if (ContentView != null) {
				ContentView.Dispose ();
				ContentView = null;
			}

			if (TabBar != null) {
				TabBar.Dispose ();
				TabBar = null;
			}
		}