Ejemplo n.º 1
0
		void m_PanelControler_PanelChanged(SplashSceenPanels CurrentPanel)
		{
			if (PanelChanged != null)
			{
				PanelChanged(CurrentPanel); 
			}

			m_Console.IsVisible = CurrentPanel != SplashSceenPanels.Realtime; 
		}
Ejemplo n.º 2
0
		public void SetOrToggleCurrentPanel(SplashSceenPanels ScreenPanel)
		{
			if (CurrentPanel == ScreenPanel)
			{
				CurrentPanel = SplashSceenPanels.None;
			}
			else
			{
				CurrentPanel = ScreenPanel; 
			}
		}
Ejemplo n.º 3
0
		void m_PanelControler_PanelChanged(SplashSceenPanels CurrentPanel)
		{
			this.IsVisible = ScreenPanel == CurrentPanel; 
		}