Example #1
0
        private void 预约ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            groupBox1.Controls.Clear();
            UCappointment uca = new UCappointment(this);

            //   UCappointmentSP uca =new UCappointmentSP(this);
            uca.Location = groupBox1.Location;
            groupBox1.Controls.Add(uca);
            groupBox1.Text = "预约";
        }
Example #2
0
        public patient(string account) : base(account)
        {
            this.account = account;
            GetIdName(account);
            InitializeComponent();
            groupBox1.Controls.Clear();
            UCappointment uca = new UCappointment(this);

            uca.Location = groupBox1.Location;
            groupBox1.Controls.Add(uca);
            groupBox1.Text = "预约";
        }