我正在编写一个登录程序。当新用户第一次输入 ID 时,它会使用 Microsoft.VisualBasic.Interaction.Inputbox 询问他们的名字和姓氏。我需要能够在一分钟后使这个输入框超时,如果用户在一分钟结束前没有按 OK,则返回一个空字符串
string first;
string last;
first = Interaction.InputBox("What is your first name?", "First Name", "");
last = Interaction.InputBox("What is your last name?", "Last Name", "");