Ejemplo n.º 1
0
 private void katoForm_Load(object sender, EventArgs e)
 {
     bs.DataSource                     = rep.GetList().ToList();
     dataGridViewX1.DataSource         = bs;
     bindingNavigatorEx1.BindingSource = bs;
     //dataGridViewX1.Columns["id"].Visible = false;
 }
Ejemplo n.º 2
0
 private void buttonItem18_Click(object sender, EventArgs e)
 {
     if (MessageBox.Show("Будут удалены все записи. Вы Уверены?", "Подтверждение удаления", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.Yes)
     {
         var allData = rep.GetList().ToList();
         foreach (var item in allData)
         {
             rep.Delete(item);
         }
         LoadData(int.Parse(comboBox1.Text));
     }
 }
Ejemplo n.º 3
0
 public orgs_editForm()
 {
     InitializeComponent();
     org = rep.GetList().FirstOrDefault() ?? new Orgs();
 }