コード例 #1
0
 /// <summary>
 /// Data Retrieval Indicator
 /// </summary>
 /// <param name="e"></param>
 void dataContextSource_quarterlyResultsComoarisonDataLoadedEvent(DataRetrievalProgressIndicatorEventArgs e)
 {
     if (e.ShowBusy)
     {
         this.busyIndicatorGrid.IsBusy = true;
     }
     else
     {
         this.busyIndicatorGrid.IsBusy = false;
     }
 }
コード例 #2
0
 /// <summary>
 /// Data Retrieval Indicator
 /// </summary>
 /// <param name="e"></param>
 void dataContextSource_heatMapDataLoadedEvent(DataRetrievalProgressIndicatorEventArgs e)
 {
     if (e.ShowBusy)
     {
         this.busyIndicatorMap.IsBusy = true;
     }
     else
     {
         this.busyIndicatorMap.IsBusy = false;
     }
 }
コード例 #3
0
 /// <summary>
 /// Data Retrieval Indicator
 /// </summary>
 /// <param name="e"></param>
 void dataContextSource_consensusEstimatesSummaryDataLoadedEvent(DataRetrievalProgressIndicatorEventArgs e)
 {
     if (e.ShowBusy)
     {
         this.busyIndicatorGrid.IsBusy = true;
     }
     else
     {
         this.busyIndicatorGrid.IsBusy = false;
     }
 }
コード例 #4
0
 /// <summary>
 /// Data Retrieval Indicator
 /// </summary>
 /// <param name="e"></param>
 void dataContextSource_portfolioRiskReturnDataLoadedEvent(DataRetrievalProgressIndicatorEventArgs e)
 {
     if (e.ShowBusy)
     {
         this.busyIndicatorGrid.IsBusy = true;
     }
     else
     {
         this.busyIndicatorGrid.IsBusy = false;
     }
 }
コード例 #5
0
 /// <summary>
 /// Data Retrieval Indicator
 /// </summary>
 /// <param name="e"></param>
 void dataContextSource_macroDBKeyAnnualReportEMSummaryDataLoadedEvent(DataRetrievalProgressIndicatorEventArgs e)
 {
     if (e.ShowBusy)
     {
         this.busyIndicatorGrid.IsBusy = true;
     }
     else
     {
         this.busyIndicatorGrid.IsBusy = false;
     }
 }
コード例 #6
0
 /// <summary>
 /// Data Retrieval Indicator
 /// </summary>
 /// <param name="e"></param>
 void dataContextSource_valuationQualityGrowthDataLoadedEvent(DataRetrievalProgressIndicatorEventArgs e)
 {
     if (e.ShowBusy)
     {
         this.busyIndicatorGrid.IsBusy = true;
     }
     else
     {
         this.busyIndicatorGrid.IsBusy = false;
     }
 }
コード例 #7
0
 /// <summary>
 /// Data Retrieval Indicator
 /// </summary>
 /// <param name="e"></param>
 void dataContextSource_topTenBenchmarkSecuritiesDataLoadedEvent(DataRetrievalProgressIndicatorEventArgs e)
 {
     if (e.ShowBusy)
     {
         this.busyIndicatorGrid.IsBusy = true;
     }
     else
     {
         this.busyIndicatorGrid.IsBusy = false;
     }
 }
コード例 #8
0
 /// <summary>
 /// event to handle RadBusyIndicator
 /// </summary>
 /// <param name="e"></param>
 void DataContextSourceMarketCapitalizationLoadEvent(DataRetrievalProgressIndicatorEventArgs e)
 {
     if (e.ShowBusy)
     {
         this.gridBusyIndicator.IsBusy = true;
     }
     else
     {
         this.gridBusyIndicator.IsBusy = false;
     }
 }
コード例 #9
0
 /// <summary>
 /// event to handle RadBusyIndicator
 /// </summary>
 /// <param name="e"></param>
 void DataContextSourceBasicDataLoadEvent(DataRetrievalProgressIndicatorEventArgs e)
 {
     if (e.ShowBusy)
     {
         this.busyIndicatorGrid.IsBusy = true;
     }
     else
     {
         this.busyIndicatorGrid.IsBusy = false;
         this.dgBasicData.Rebind(); //needed to refresh the grid
     }
 }
コード例 #10
0
 /// <summary>
 /// Data Retrieval Indicator
 /// </summary>
 /// <param name="e"></param>
 void dataContextSource_holdingsPieChartRegionDataLoadedEvent(DataRetrievalProgressIndicatorEventArgs e)
 {
     if (e.ShowBusy)
     {
         this.busyIndicatorChart.IsBusy = true;
         this.busyIndicatorGrid.IsBusy  = true;
     }
     else
     {
         this.busyIndicatorChart.IsBusy = false;
         this.busyIndicatorGrid.IsBusy  = false;
     }
 }
コード例 #11
0
 /// <summary>
 /// Data Retrieval Indicator
 /// </summary>
 /// <param name="e"></param>
 void dataContextSource_performanceGraphDataLoadedEvent(DataRetrievalProgressIndicatorEventArgs e)
 {
     if (e.ShowBusy)
     {
         this.busyIndicatorChart.IsBusy = true;
         this.busyIndicatorGrid.IsBusy  = true;
     }
     else
     {
         this.busyIndicatorChart.IsBusy = false;
         this.busyIndicatorGrid.IsBusy  = false;
     }
 }
コード例 #12
0
 /// <summary>
 /// Data Retrieval Indicator
 /// </summary>
 /// <param name="e"></param>
 void dataContextSource_unrealizedGainLossDataLoadedEvent(DataRetrievalProgressIndicatorEventArgs e)
 {
     if (e.ShowBusy)
     {
         this.busyIndicatorChart.IsBusy = true;
         this.busyIndicatorGrid.IsBusy  = true;
     }
     else
     {
         this.busyIndicatorChart.IsBusy = false;
         this.busyIndicatorGrid.IsBusy  = false;
     }
 }