예제 #1
0
파일: UserQuery.cs 프로젝트: wynet321/aimu
        private void buttonInsertTenant_Click(object sender, EventArgs e)
        {
            Form form = new UserProperties();

            form.ShowDialog();
            buttonSearch_Click(sender, e);
        }
예제 #2
0
파일: UserQuery.cs 프로젝트: wynet321/aimu
        private void dataGridViewTenants_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
        {
            Form form = new UserProperties(Convert.ToInt32(dataGridViewTenants.SelectedRows[0].Cells[0].Value));

            form.ShowDialog();
            buttonSearch_Click(sender, e);
        }