コード例 #1
0
 public BusyIndicatorViewModel(BusyCategoryToken busyToken)
 {
     Messenger.Default.Register<BusyIndicatorMessage>(this, busyToken,
         (message) =>
         {
             ReferenceCountedBusyEnabler(message.IsBusy);
         });
 }
コード例 #2
0
 public AutoBusyHandler(BusyCategoryToken token = null)
 {
     _token = token;
     SendBusyNotification(true);
 }