Beispiel #1
0
 public void RenderShadow()
 {
     if (m_Rconfig.IsShowShadow && m_ShadowForm == null)
     {
         m_ShadowForm = new ShadowForm(m_HostForm, m_Rconfig);
         m_ShadowForm.Show();
     }
 }
Beispiel #2
0
        public SplashScreen()
        {
            InitializeComponent();

            _shadow = new ShadowForm();
            _shadow.Enabled = false;
            _shadow.Show();

            this.BringToFront();
            Disposed += SplashScreen_Disposed;
            Shown += new EventHandler(SplashScreen_Shown);
            #if DEBUG
            versionLabel.Text = string.Format("v{0} (Debug)", Application.ProductVersion);
            #else
            versionLabel.Text = string.Format("v{0}", Application.ProductVersion);
            #endif
        }
Beispiel #3
0
        public SplashScreen()
        {
            InitializeComponent();

            _shadow         = new ShadowForm();
            _shadow.Enabled = false;
            _shadow.Show();


            this.BringToFront();
            Disposed += SplashScreen_Disposed;
            Shown    += new EventHandler(SplashScreen_Shown);
#if DEBUG
            versionLabel.Text = string.Format("v{0} (Debug)", Application.ProductVersion);
#else
            versionLabel.Text = string.Format("v{0}", Application.ProductVersion);
#endif
        }