C#怎么把下面的控制台程序改成在窗体实现啊 帮忙解下 谢谢

string userInput;
while (true)
{
try
{
Console.Write("请输入一个0--5之间的数字 (或按回车键退出) >: ");
userInput = Console.ReadLine();
if (userInput == "")
break; // retrurn;
int index = Convert.ToInt32(userInput);
if (index < 0 || index > 5)
{
throw new IndexOutOfRangeException("但你输入的是:" + userInput);
}
Console.WriteLine("你输入的是:" + index);
}
catch (IndexOutOfRangeException ex)
{
Console.WriteLine("异常: 输入的数字必须在0--5之间," + ex.Message);
}
catch (Exception ex)
{
Console.WriteLine("发生一个异常:{0} " + ex.Message);
}
catch
{
Console.WriteLine("发生了其他的异常!");
}
finally
{
Console.WriteLine("谢谢你!");
Console.WriteLine();
}
}

在一个表单中加入一个文本框,输入值。
string userInput;
while (true)
{
try
{
userInput = txtbox1.Text;
if (userInput == "")
break; // retrurn;
int index = Convert.ToInt32(userInput);
if (index < 0 || index > 5)
{
MessageBox.Show("但你输入的是:" + userInput.ToString());
}
MessageBox.Show("你输入的是:" + index.ToString());
}
catch (IndexOutOfRangeException ex)
{
MessageBox.Show("异常: 输入的数字必须在0--5之间," + ex.Message);
}
catch (Exception ex)
{
MessageBox.Show("发生一个异常:{0} " + ex.Message);
}
catch
{
MessageBox.Show("发生了其他的异常!");
}
finally
{
MessageBox.Show("谢谢你!");
}
}
温馨提示:内容为网友见解,仅供参考
第1个回答  2011-03-30
使用TextBox和MessageBox.Show()
相似回答