示例#1
0
        public void Back()
        {
            Form clients = new FormClients();

            this.Hide();
            clients.Show();
        }
示例#2
0
        void buttonClients_Click(object sender, EventArgs e)
        {
            Form Clients = new FormClients();

            Clients.Left = this.Left;
            Clients.Top  = this.Top;
            Clients.Show();
            this.Hide();
        }