答案 0 :(得分:2)
label1.Text="blah blah blah"
不是label1.Text("blah blah blah")
。
答案 1 :(得分:1)
您使用Label1.Text
作为错误的函数,因为Text
是属性。正确的方法是Label1.Text = "some text"
。
答案 2 :(得分:0)
答案 3 :(得分:0)
要在标签中设置您必须执行的操作:
label1.Text="hello world"
您正在使用它,因为它是方法调用
label1.Text("hello world") //wrong!!!