예제 #1
0
 void BtnShowNotificationPressed(object sender, EventArgs args)
 {
     CRToastManager.ShowNotificationWithOptions(
         Options(),
         () =>
     {
         System.Diagnostics.Debug.WriteLine("Appeared");
     }, () => {
         System.Diagnostics.Debug.WriteLine("Completed");
     }
         );
 }
예제 #2
0
 private void BtnDismissNotificationPressed(object sender, EventArgs e)
 {
     CRToastManager.DismissNotification(true);
 }