public UserNeedKnowInfoPanel() { InitializeComponent(); this.webBrowser1.ScriptErrorsSuppressed = true; this.btnMemberProtocol_Click(null, null); WinFormHelper.CenterHor(this.btnSure); }
public QuickRegisterPanel() { InitializeComponent(); WinFormHelper.CenterHor(this.btnAgreeAndRegister); WinFormHelper.CenterHor(this.btnViewProtocol); this.txtUserName.Focus(); }
public MessagePanelFirst(string hint) { InitializeComponent(); this.lbMsg1.Text = hint; this.lbMsg1.Location = new Point(this.lbMsg1.Location.X, this.lbMsg1.Location.Y + 30); this.lbMsg2.Visible = false; this.lbMsg2.Text = string.Empty; WinFormHelper.CenterHor(this.picSure); }
public MessageForm(string hint) { InitializeComponent(); this.lbMsg1.Text = hint; this.lbMsg1.Location = new Point(this.lbMsg1.Location.X, this.lbMsg1.Location.Y + 30); this.lbMsg2.Visible = false; this.lbMsg2.Text = string.Empty; WinFormHelper.CenterHor(this.picSure); GlobalTools.MaskFormKeyDown(this); }