コード例 #1
0
        private void buttonEdit_Click(object sender, EventArgs e)
        {
            int selectedIndex = dataGridView1.CurrentCell.RowIndex;

            int Id = (int)dataGridView1.Rows[selectedIndex].Cells[0].Value;
            ContractorEditForm f = new ContractorEditForm(getInstance(), Id);

            f.ShowDialog();
        }
コード例 #2
0
        private void buttonCreate_Click(object sender, EventArgs e)
        {
            ContractorEditForm f = new ContractorEditForm(getInstance());

            f.ShowDialog();
        }