Example #1
0
 private void EditSupplier(object sender, EventArgs e)
 {
     var id = gridView1.GetFocusedRowCellValue(gridColumn8);
     var addSupplieForm = new AddSupplier(Convert.ToInt32(id));
     addSupplieForm.Text = "编辑供应商";
     addSupplieForm.ShowDialog();
 }
Example #2
0
        private void EditSupplier(object sender, EventArgs e)
        {
            var id             = gridView1.GetFocusedRowCellValue(gridColumn8);
            var addSupplieForm = new AddSupplier(Convert.ToInt32(id));

            addSupplieForm.Text = "编辑供应商";
            addSupplieForm.ShowDialog();
        }
Example #3
0
        private void AddSupplier(object sender, EventArgs e)
        {
            var addSupplieForm = new AddSupplier();

            addSupplieForm.ShowDialog();
        }
Example #4
0
 private void AddSupplier(object sender, EventArgs e)
 {
     var addSupplieForm = new AddSupplier();
     addSupplieForm.ShowDialog();
 }