Rock.Apps.CheckScannerUtility.BatchPage.grdBatches_SelectionChanged C# (CSharp) Méthode

grdBatches_SelectionChanged() private méthode

Handles the SelectionChanged event of the grdBatches control.
private grdBatches_SelectionChanged ( object sender, System.Windows.Controls.SelectionChangedEventArgs e ) : void
sender object The source of the event.
e System.Windows.Controls.SelectionChangedEventArgs The instance containing the event data.
Résultat void
        private void grdBatches_SelectionChanged( object sender, SelectionChangedEventArgs e )
        {
            FinancialBatch selectedBatch = grdBatches.SelectedValue as FinancialBatch;

            UpdateBatchUI( selectedBatch );
        }