private void anasayfaToolStripMenuItem_Click(object sender, EventArgs e)
        {
            y_ana yanasec = new y_ana();

            yanasec.Show();
            this.Hide();
        }
        private void button2_Click(object sender, EventArgs e)
        {
            baglantı.Open();
            SqlCommand    komut = new SqlCommand("select * from adminn where kullanıcı ='" + textBox1.Text + "'and sifre='" + textBox2.Text + "'", baglantı);
            SqlDataReader dr    = komut.ExecuteReader();

            if (dr.Read())
            {
                y_ana yana = new y_ana();
                yana.Show();
                this.Hide();
            }
            else
            {
                MessageBox.Show("Yanlış Girdiniz");
            }
            baglantı.Close();
        }