Example #1
0
 public static void Publish <TEvent>(this uFrameKernel kernel, TEvent evt)
 {
     uFrameKernel.EventAggregator.Publish(evt);
 }
Example #2
0
 public static IObservable <TEvent> OnEvent <TEvent>(this uFrameKernel kernel)
 {
     return(uFrameKernel.EventAggregator.GetEvent <TEvent>());
 }
Example #3
0
 public static void Publish(this uFrameKernel mvvmKernel, object evt)
 {
     uFrameKernel.EventAggregator.Publish(evt);
 }