コード例 #1
0
ファイル: LogInViewModel.cs プロジェクト: sabawcoder/cims
        private async void PromptSuccesfulLogIn()
        {
            await main.ShowMessageAsync("Welcome! " + CurrentUser.EmployeeFullName, "You are now signed in.");

            main.lblEmployeeFullName.Content = CurrentUser.EmployeeFullName;
            main.lblAccessTypeName.Content   = CurrentUser.AccessTypeName;
            main.lblEmployeeID.Content       = CurrentUser.Employee_ID;
        }
コード例 #2
0
 public async void MessageDialog(string largeText, string smalltext)
 {
     await main.ShowMessageAsync(largeText, smalltext);
 }