예제 #1
0
 public UserNeedKnowInfoPanel()
 {
     InitializeComponent();
     this.webBrowser1.ScriptErrorsSuppressed = true;
     this.btnMemberProtocol_Click(null, null);
     WinFormHelper.CenterHor(this.btnSure);
 }
예제 #2
0
 public QuickRegisterPanel()
 {
     InitializeComponent();
     WinFormHelper.CenterHor(this.btnAgreeAndRegister);
     WinFormHelper.CenterHor(this.btnViewProtocol);
     this.txtUserName.Focus();
 }
예제 #3
0
 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);
 }
예제 #4
0
 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);
 }