winform中在tabPage控件中点击图片控件,再点击按钮怎么显示numericUpDown的值乘以文本框的值
时间: 2023-05-22 12:01:51 浏览: 159
您可以在图片控件的Click事件中记录numericUpDown的值,然后在按钮的Click事件中获取文本框的值并计算乘积,最后将结果显示在适当的位置。以下是示例代码:
private int numericUpDownValue;
private void pictureBox_Click(object sender, EventArgs e)
{
numericUpDownValue = (int)numericUpDown.Value;
}
private void button_Click(object sender, EventArgs e)
{
int textBoxValue = int.Parse(textBox.Text);
int result = numericUpDownValue * textBoxValue;
label.Text = result.ToString();
}
相关问题
winform中点击按钮怎么显示numericUpDown的值乘以文本框的值
您可以在按钮的 Click 事件中编写以下代码:
double result = (double)numericUpDown1.Value * double.Parse(textBox1.Text);
MessageBox.Show(result.ToString());
其中,numericUpDown1 是您的 NumericUpDown 控件,textBox1 是您的文本框控件。这段代码将获取 numericUpDown1 的值并将其乘以 textBox1 的值,然后将结果显示在消息框中。
阅读全文