1
我想顯示我的消息對話框中的文本框把用戶輸入&點擊OK按鈕來檢索我的MainPage.cs文本框的值,如何在C#地鐵顯示信息對話框中用戶輸入文本框的應用程式
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();
}
有關如何做到這一點的任何建議?
這是可能嗎?回覆儘快開發:) – Marie
我認爲一個InputBox([從這個鏈接] [1])是你需要的。 [1]:http://stackoverflow.com/questions/97097/what-is-the-c-sharp-version-of-vb-nets-inputdialog – iceheaven31