Beispiel #1
0
 private void PostEvent(NavEventType type)
 {
     if (OnNavEvent != null)
     {
         OnNavEvent(this, new NavigationEvent(type));
     }
 }
Beispiel #2
0
 public NavigationEvent(NavEventType type, System.Object userData)
 {
     this.type     = type;
     this.userData = userData;
 }
Beispiel #3
0
 public NavigationEvent(NavEventType navEvent)
 {
     this.navEvent = navEvent;
 }