private void netcom_ClientLoggingOut(object sender, OverrideEventArgs e) { if (!AllowRadegastUIControl) { e.Cancel = true; } }
private void netcom_ClientLoggingOut(object sender, OverrideEventArgs e) { btnLogin.Enabled = false; lblLoginStatus.Text = "Logging out..."; lblLoginStatus.ForeColor = Color.FromKnownColor(KnownColor.ControlText); //proLogin.Visible = true; }
private void netcom_ClientLoggingIn(object sender, OverrideEventArgs e) { if (!AllowRadegastUIControl) { e.Cancel = true; } if (ClientManagerConfig.StartLispThreadAtPluginInit) { RunClientManagerStartupLisp(); } }
private void netcom_ClientLoggingIn(object sender, OverrideEventArgs e) { lblLoginStatus.Text = "Logging in..."; lblLoginStatus.ForeColor = Color.FromKnownColor(KnownColor.ControlText); proLogin.Visible = true; pnlLoggingIn.Visible = true; pnlLoginPrompt.Visible = false; btnLogin.Enabled = false; }
private void netcom_ClientLoggingIn(object sender, OverrideEventArgs e) { proReconnect.Visible = true; btnExit.Enabled = false; btnReconnect.Enabled = false; }