gpt4 book ai didi

c# - 在消息框中显示表单数据

转载 作者:太空宇宙 更新时间:2023-11-03 18:12:42 26 4
gpt4 key购买 nike

当用户单击“提交”以验证输入是否正确时,我试图在消息框中显示 3 个值。

这 3 个值来自以下形式的组合框:年龄、高度、体重。

在我当前的设置中,该框只会在顶部边框中显示“年龄:”和实际数值。

如何让 3 个组合框数据项以适当的标题出现在消息框中?

像这样: 年龄:27 高度:62 体重:180

数据存储在变量age_Num.Text、height_Num.Text和weight_Num.Text中

MessageBox.Show("Age:", age_Num.Text); //just shows "Age:". Value is in titlebar of mb

最佳答案

ComboBox 的情况下,您可以通过 ComboBox.SelectedText 获取选定的文本属性(property)。

要从多个值构建一个字符串,您可以使用 String.Format() .

string age = age_num.SelectedText;
string height = height_Num.SelectedText;
string weight = weight_Num.SelectedText
string text = String.Format(
"Age: {0}, Height: {1}, Weight: {2}", age, height, weight);
MessageBox.Show(text);

关于c# - 在消息框中显示表单数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11832755/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com