private void btnOrd_Click(object sender, EventArgs e)
        {
            Form fNar1 = new Nar1();

            ActiveForm.Hide();
            fNar1.Show();
            fNar1.Location = this.Location;
        }
        private void button1_Click(object sender, EventArgs e)
        {
            Form fNar2 = new Nar1();

            ActiveForm.Hide();
            fNar2.Show();
            fNar2.Location = this.Location;
            //this.Hide();
            //this.Close();
        }