Пример #1
0
 private void MController_DotReceived(IPenClient sender, DotReceivedEventArgs args)
 {
     ProcessDot(args.Dot);
 }
Пример #2
0
 private async void MController_DotReceived(IPenClient sender, DotReceivedEventArgs args)
 {
     await this.Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal, () => {
         ProcessDot(args.Dot);
     });
 }