Beispiel #1
0
 public void OnScrollEnded()
 {
     ScrollEnded.Invoke(null, System.EventArgs.Empty);
 }
Beispiel #2
0
 public void OnNothingSelected(AdapterView <object> adapterView)
 {
     NothingSelected.Invoke(adapterView, System.EventArgs.Empty);
 }
Beispiel #3
0
 public void OnDrawerOpened()
 {
     DrawerOpened.Invoke(null, System.EventArgs.Empty);
 }
Beispiel #4
0
 public void OnChronometerTick(Chronometer chronometer)
 {
     Tick.Invoke(chronometer, System.EventArgs.Empty);
 }
Beispiel #5
0
 public void OnDismiss()
 {
     Dismiss.Invoke(null, System.EventArgs.Empty);
 }
Beispiel #6
0
 public void OnChildViewRemoved(View parent, View child)
 {
     ChildViewRemoved.Invoke(parent, new HierarchyChangeEventArgs(child));
 }
Beispiel #7
0
 public void OnViewDetachedFromWindow(View view)
 {
     DetachedFromWindow.Invoke(view, System.EventArgs.Empty);
 }
Beispiel #8
0
 public void OnViewAttachedToWindow(View view)
 {
     AttachedToWindow.Invoke(view, System.EventArgs.Empty);
 }
Beispiel #9
0
 public void OnStopTrackingTouch(SeekBar seekBar)
 {
     StopTrackingTouch.Invoke(seekBar, System.EventArgs.Empty);
 }
Beispiel #10
0
 public void OnDismiss(PopupMenu menu)
 {
     Dismiss.Invoke(menu, EventArgs.Empty);
 }