示例#1
0
        private void btnWeightLog_Click(object sender, EventArgs e)
        {
            FrmWeightLog frm = new FrmWeightLog();

            frm.TopLevel   = false;
            frm.AutoScroll = true;
            this.splitContainer2.Panel2.Controls.Add(frm);
            frm.FormBorderStyle = FormBorderStyle.None;
            frm.Show();
        }
示例#2
0
 public FrmAddWeightLog(FrmWeightLog _frmWeightLog)
 {
     frmWeightLog = _frmWeightLog;
     InitializeComponent();
 }