在 C# 中使用基本表单应用程序时,我无法访问其中的变量。
所以在表单类中我有
public partial class pingerform : Form
{
..
..
private System.Windows.Forms.TextBox textBox2;
public string textBox2Text
{
get { return textBox2.Text; }
set { textBox2.Text = value; }
}
然后在我的主应用程序中
Application.Run(new pingerform());
...
...
pingerform.textBox2Text.text() = str;
但我被告知没有对象引用。
错误 1
非静态字段、方法或属性“pingerform.textBox2Text.get”需要对象引用 C:\Users\aaron.street\Documents\Visual Studio 11\Projects\PingDrop\PingDrop\Program.cs 54 21 PingDrop
所以我想我会让 pinger 表单类静态,但它不会让我这样做?
错误 1
无法创建静态类“PingDrop.pingerform”的实例 C:\Users\aaron.street\Documents\Visual Studio 11\Projects\PingDrop\PingDrop\Program.cs 21 29 PingDrop
如何在不创建表单的特定实例的情况下访问表单属性,
我有一个后台线程正在运行,我想定期更新表单中的文本?
干杯
亚伦