internal void OnSpinnerClick(SpinnerClickEventArgs e)
 {
     if (this.SpinnerClick != null)
     {
         this.SpinnerClick(this, e);
     }
 }
        private void softkeyNotification_SpinnerClick(object sender, SpinnerClickEventArgs e)
        {
            int notifCount = _notifTexts.Count;
            if (e.Forward)
                _notifIndex = Math.Min(notifCount, ++_notifIndex);
            else
                _notifIndex = Math.Max(1, --_notifIndex);

            _softkeyNotification.Caption = String.Format("Location Scheduler\t{0} of {1}", _notifIndex, notifCount);
            _softkeyNotification.Text = _notifTexts[notifCount - _notifIndex];
        }
 internal void OnSpinnerClick(SpinnerClickEventArgs e)
 {
   if (this.SpinnerClick != null)
   {
     this.SpinnerClick(this, e);
   }
 }