コード例 #1
0
ファイル: SplashScreen.cs プロジェクト: RugCode/drg-pt
		void m_PanelControler_PanelChanged(SplashSceenPanels CurrentPanel)
		{
			if (PanelChanged != null)
			{
				PanelChanged(CurrentPanel); 
			}

			m_Console.IsVisible = CurrentPanel != SplashSceenPanels.Realtime; 
		}
コード例 #2
0
		public void SetOrToggleCurrentPanel(SplashSceenPanels ScreenPanel)
		{
			if (CurrentPanel == ScreenPanel)
			{
				CurrentPanel = SplashSceenPanels.None;
			}
			else
			{
				CurrentPanel = ScreenPanel; 
			}
		}
コード例 #3
0
ファイル: PanelBase.cs プロジェクト: RugCode/drg-pt
		void m_PanelControler_PanelChanged(SplashSceenPanels CurrentPanel)
		{
			this.IsVisible = ScreenPanel == CurrentPanel; 
		}