coding4fun 工具包的输入提示有一个文本框,但我找不到任何方法来添加另一个!这是我从谷歌找到的示例:
InputPrompt input = new InputPrompt();
input.Completed += new EventHandler<PopUpEventArgs<string, PopUpResult>>(input_Completed);
input.Title = "Test Title";
input.Message = "Test message !";
input.InputScope = new InputScope { Names = { new InputScopeName() { NameValue = InputScopeNameValue.EmailSmtpAddress } } };
input.Show();
在这里我只能添加单个输入范围......但我需要在这里添加多个文本框!谁能帮我 ?提前致谢 !