Example #1
0
 private void setRow3(HeatQueryOrderlist info)
 {
     name3.Dispatcher.Invoke(new setTextBlockTextDelegate(setTextBlock), name3, info.custName);
     date3.Dispatcher.Invoke(new setTextBlockTextDelegate(setTextBlock), date3, info.billDate);
     price3.Dispatcher.Invoke(new setTextBlockTextDelegate(setTextBlock), price3, info.amout);
     address3.Dispatcher.Invoke(new setTextBlockTextDelegate(setTextBlock), address3, info.address);
     address3Str = info.address;
     panel3.Dispatcher.Invoke(new isShowGridDelegate(isShowGrid), panel3, true);
 }
Example #2
0
 private void load()
 {
     try
     {
         this.info     = Payment.heatPayParam.HeatQueryOrderlist;
         this.pwd      = Payment.heatPayParam.Pwd;
         this.icParams = Payment.heatPayParam.IcParams;
         SysBLL.Player("交易处理中,请稍后.wav");
         payThread = new Thread(pay);
         payThread.Start();
     }
     catch (Exception ex)
     {
         log.Write("error:FormHeatStep06:load():" + ex.Message);
     }
 }