如何在我自己的函数C#中使用标签(windows窗体应用程序)

时间:2016-03-01 21:48:55

标签: c# winforms

标签和我的功能enter image description here

所以我有自己的表格标签和我自己编写的一个功能。 现在在函数内部我调用label1.Text并且它不会传递编译器。 不知道我做错了什么,有人能建议我解决方案吗?

在我的功能中 enter image description here

4 个答案:

答案 0 :(得分:2)

label1.Text="blah blah blah"不是label1.Text("blah blah blah")

答案 1 :(得分:1)

您使用Label1.Text作为错误的函数,因为Text是属性。正确的方法是Label1.Text = "some text"

答案 2 :(得分:0)

您需要将代码更改为:

Label1.Text = "Your string goes here.";

label的{​​{3}}值为Text,而不是property

答案 3 :(得分:0)

要在标签中设置您必须执行的操作:

label1.Text="hello world" 

您正在使用它,因为它是方法调用

label1.Text("hello world") //wrong!!!