public MyMessageBoxPopUp()
 {
     this.Font           = FontManager.GetFont("Microsoft Sans Serif", 8.25f);
     base.ClientSize     = new Size(400, 0x7d);
     this.panel          = new MyMessageBoxPanel();
     this.panel.Size     = new Size(base.Size.Width, base.Size.Height - 0x22);
     this.panel.Location = new Point(0, 0x22);
     base.Icon           = Resources.shk_icon;
     base.StartPosition  = FormStartPosition.CenterScreen;
     base.Controls.Add(this.panel);
     this.Text = "MessageBoxPopUp";
     base.Controls.SetChildIndex(this.panel, 0);
     base.ResumeLayout(false);
     base.PerformLayout();
     base.FormClosing += new FormClosingEventHandler(this.MyMessageBoxPopUps_FormClosing);
 }
 public MyMessageBoxPopUp()
 {
     this.Font = FontManager.GetFont("Microsoft Sans Serif", 8.25f);
     base.ClientSize = new Size(400, 0x7d);
     this.panel = new MyMessageBoxPanel();
     this.panel.Size = new Size(base.Size.Width, base.Size.Height - 0x22);
     this.panel.Location = new Point(0, 0x22);
     base.Icon = Resources.shk_icon;
     base.StartPosition = FormStartPosition.CenterScreen;
     base.Controls.Add(this.panel);
     this.Text = "MessageBoxPopUp";
     base.Controls.SetChildIndex(this.panel, 0);
     base.ResumeLayout(false);
     base.PerformLayout();
     base.FormClosing += new FormClosingEventHandler(this.MyMessageBoxPopUps_FormClosing);
 }