1
我是C#編程新手。目前,我使用下面的代碼來獲取用戶輸入,並在用戶鍵入文本框內並按下Ok後,整個輸入框關閉。用戶必須每次運行該程序以獲取輸入框。如何保持輸入框始終打開?這是一個C#程序,我使用了Microsoft.VisualBasic參考來運行代碼。即使在用戶按下確定按鈕後,如何保持Microsoft.VisualBasic.Interaction.InputBox打開?
using System;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.IO;
namespace Text
{
class Program
{
static void Main(string[] args)
{
string input = Microsoft.VisualBasic.Interaction.InputBox("Please Type In The Number", "Type");
if (input == "")
{
}
bool valid = false;
}
}
}