コード例 #1
0
ファイル: Form1.cs プロジェクト: dirtycreep/Ado.net
 private void btnAdd_Click(object sender, EventArgs e)
 {
     using (frmAddEditContact frm = new frmAddEditContact(null))
     {
         if (frm.ShowDialog() == DialogResult.OK)
         {
             contactBindingSource.DataSource = ContactServices.GetAll();
         }
     }
 }
コード例 #2
0
ファイル: Form1.cs プロジェクト: dirtycreep/Ado.net
 private void btnEdit_Click(object sender, EventArgs e)
 {
     if (contactBindingSource.Current == null)
     {
         return;
     }
     using (frmAddEditContact frm = new frmAddEditContact(contactBindingSource.Current as Contact))
     {
         if (frm.ShowDialog() == DialogResult.OK)
         {
             contactBindingSource.DataSource = ContactServices.GetAll();
         }
     }
 }