示例#1
0
        private async void LocalWebAccountInvokedHandler(WebAccountCommand command, WebAccountInvokedArgs eventArgs)
        {
            await WebAccountInvokedHandlerCoreAsync(command, eventArgs);

            if (eventArgs.Action == WebAccountAction.Manage)
            {
                ChangePasswordFlyout changePasswordFlyout = new ChangePasswordFlyout(this.username);
                changePasswordFlyout.Show();
            }
        }
 private async void LocalWebAccountInvokedHandler(WebAccountCommand command, WebAccountInvokedArgs eventArgs)
 {
     await WebAccountInvokedHandlerCoreAsync(command, eventArgs);
     if (eventArgs.Action == WebAccountAction.Manage)
     {
         ChangePasswordFlyout changePasswordFlyout = new ChangePasswordFlyout(this.username);
         changePasswordFlyout.Show();
     }
 }