Exemplo n.º 1
0
 private void BindGrid()
 {
     try
     {
         dataSource = channel.GetHistoricalDataForGrid(this.Id, this.StartTime, this.EndTime);
     }
     catch (System.Exception ex)
     {
         logger.LogException(LogLevel.Info, string.Format("WindowGrid.BindGrid"), ex);
     }
     Dispatcher.BeginInvoke(new Action(BindGridUI));
 }