我知道如何在 C++ 中创建程序,但对 C# 非常陌生,所以请耐心等待,但我有一个问题,我一生都无法在谷歌或 stackoverflow 搜索中找到它(也许不知道一个好方法措辞)。我的表单上有两个函数: ANumericUpDown
和 a Button
。单击按钮时,我想从中获取数据NumericUpDown
,并将.Show()
其放在消息框中。这是我目前拥有的。
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void StatBox_ValueChanged(object sender, EventArgs e)
{
//decimal Stat = StatBox.Value;
//string StatStr = Stat.ToString();
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show(StatBox.Value);
}
}