メッセージダイアログ内にテキストボックスを表示して、ユーザー入力を取得し、[OK] ボタンをクリックして、MainPage.cs のテキストボックスの値を取得したいと考えています。
private async void join_btn_Click(object sender, RoutedEventArgs e)
{
var messageDialog = new MessageDialog(" Enter your secure code Here");
messageDialog.Title = "Join session";
messageDialog.Commands.Add(new UICommand(
"OK",
new UICommandInvokedHandler(this.CommandInvokedHandlerOKFunction)));
messageDialog.DefaultCommandIndex = 0;
messageDialog.CancelCommandIndex = 1;
await messageDialog.ShowAsync();
}
それを行う方法について何か提案はありますか??