DCT.UI.CoreUI.ToggleSystray C# (CSharp) Method

ToggleSystray() private method

private ToggleSystray ( ) : void
return void
        private void ToggleSystray()
        {
            if (this.Visible)
            {
                mNotifyIcon.Visible = true;
                this.Hide();
            }
            else
            {
                Show();
                if (!Settings.NotifyVisible)
                    mNotifyIcon.Visible = false;
            }
        }
CoreUI