Esempio n. 1
0
 protected virtual void OnBatchClicked(BatchClickedEventArgs e)
 {
     if (BatchClicked != null)
     {
         BatchClicked(this, e);
     }
 }
Esempio n. 2
0
        protected virtual BatchClickedEventArgs OnBatchClickedWithReturn(int count)
        {
            BatchClickedEventArgs args = new BatchClickedEventArgs(count);

            OnBatchClicked(args);

            return(args);
        }