如何让标签上有变量' (NumericUpDown),然后在其后添加文本。所以它就像" 7秒"
Label2.Text = NumericUpDown1.Value "Text"
以上是我的代码
[问题修改原因我被禁止提问......]
答案 0 :(得分:1)
您可以在Value属性上调用ToString
方法。 &
运算符将两个字符串连接在一起。
Label2.Text = NumericUpDown1.Value.ToString & " Seconds"
答案 1 :(得分:1)
当然,总有多种方法可以完成任务。我的第一直觉是使用转换功能...
Label2.Text = CStr(NumericUpDown1.Value) & " Seconds"