コード例 #1
0
ファイル: gui_SplashScreen.cs プロジェクト: philwo/crossfade
        public static void CloseForm()
        {
            if (mySplash != null)
            {
                mySplash.m_dblOpacityIncrement = -mySplash.m_dblOpacityDecrement;
            }

            myThread = null;
            mySplash = null;
        }
コード例 #2
0
ファイル: gui_SplashScreen.cs プロジェクト: philwo/crossfade
        private static void ShowForm()
        {
            mySplash = new gui_SplashScreen();

            try
            {
                Application.Run(mySplash);
            }
            catch (InvalidOperationException)
            {
                // Quick-Hack wegen Sebastians Laptop ...
            }
            catch (Win32Exception)
            {
                // Quick-Hack wegen Sebastians Laptop ...
            }
        }