Пример #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            ManageGroupEvaluation_1 f6 = new ManageGroupEvaluation_1( );

            this.Close();
            f6.Show();
        }
Пример #2
0
        private void dataGridView2_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            int currentRow         = int.Parse(e.RowIndex.ToString());
            int currentColumnIndex = int.Parse(e.ColumnIndex.ToString());
            int gid = Convert.ToInt32(dataGridView2.Rows[currentRow].Cells[1].Value.ToString());

            if (currentColumnIndex == 0)
            {
                ManageGroupEvaluation_1 f3 = new ManageGroupEvaluation_1(gid);
                this.Close();
                f3.Show();
            }
        }