private void RpairCom_Click(object sender, RoutedEventArgs e)
 {
     EquipmentClass _Eclass = new EquipmentClass();
     var a = this.repair_Grid.SelectedItem;
     var b = a as DataRowView;
     int _Eid = Convert.ToInt32(b.Row[0]);
     MsgResult r = JXMessageBox.Show(this, "您需要对此设备申请入库?", "提示", MsgButton.Yes_No_Cancel, MsgImage.Exclamation);
     //MessageBox.Show(r.ToString());
     if (r == MsgResult.OK)
     {
         int state = _Eclass.repairEquipmentComing(_Eid);
         if (state == BaseRequest.SUCCESS)
         {
             DataSet set = _Eclass.getRepairEquipmentList();
             this.page.ShowPages(this.repair_Grid, set, BaseRequest.PAGE_SIZE);
             JXMessageBox.Show(this, "申请出库成功", MsgImage.Success);
             NewEquipment newEquipment = DeviceMigrationsFactory.NewEquipment;
             DataSet deliverySet = _Eclass.comingEquipment();
             newEquipment.page.ShowPages(newEquipment.comingGrild, deliverySet, BaseRequest.PAGE_SIZE);
         }
         else
         {
             JXMessageBox.Show(this, "操作失败!系统异常,请联系管理员!", MsgImage.Error);
         }
     }
 }
 private void Repair_Equipment(object sender, RoutedEventArgs e)
 {
     EquipmentClass ec = new EquipmentClass();
     DataSet set = ec.getRepairEquipmentList();
     TakeRepairComing tr = new TakeRepairComing();
     tr.page.ShowPages(tr.repair_Grid, set, BaseRequest.PAGE_SIZE);
     //this.apply_repair.Children.Add(tr);//.Add(_Repair);
     //JXMessageBox.Show(Window.GetWindow(this)
     tr.Owner = Window.GetWindow(this);
     tr.ShowDialog();
 }