コード例 #1
0
ファイル: splash.cs プロジェクト: Dfinitski/genesisradio
		// A private entry point for the thread.
		static private void ShowForm()
		{
			ms_frmSplash = new Splash();
			Application.Run(ms_frmSplash);
		}
コード例 #2
0
ファイル: splash.cs プロジェクト: Dfinitski/genesisradio
		// A static method to close the SplashScreen
		static public void CloseForm()
		{
			if( ms_frmSplash != null && ms_frmSplash.IsDisposed == false )
			{
				// Make it start going away.
				ms_frmSplash.m_dblOpacityIncrement = - 
					ms_frmSplash.m_dblOpacityDecrement;
			}
			ms_oThread = null;  // we do not need these any more.
			ms_frmSplash = null;
		}
コード例 #3
0
ファイル: splash.cs プロジェクト: richtma/genesisradio
 // A private entry point for the thread.
 static private void ShowForm()
 {
     ms_frmSplash = new Splash();
     Application.Run(ms_frmSplash);
 }