(使用WPF)是否可以使用a的数字TextBox
来选择参数名称?例如,用户可以将 0、1、2 或 3 作为文本放入TextBox
:
private void button1_Click(object sender, RoutedEventArgs e)
{
int test = int.Parse(textBox1.Text);
string nr1 = "this string is 1";
string nr2 = "this string is 2";
string nr3 = "this string is 3";
MessageBox.Show();
}
现在MessageBox.Show();
想把一些东西作为这样的nr(test)
事情可能吗?