예제 #1
0
 private void FrmTraJunction_Shown(object sender, EventArgs e)
 {
     try
     {
         IList <TraJunction> Traffics = AGVClientDAccess.GetTraJunction();
         this.bsDetail.DataSource = Traffics;
         bsDetail.ResetBindings(false);
         bsDetail.MoveLast();
     }
     catch (Exception ex)
     { MsgBox.ShowError(ex.Message); }
 }