从另一个类文件访问C#窗体的文本框(Accesing C# Form textbox from an

2019-07-31 14:26发布

我想从另一个类文件(chartscopier.cs例如)访问Form1的元素,但我无法改变从chartscopier.cs TextBox1的文本。

我怎样才能做到这一点?

这里是我的代码:

Form1.cs的

namespace TEST
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            var CopyCharts = new System.Threading.Timer(chartscopier.CopyGraph, null, 0, 60000);
        }
    }
}

chartscopier.cs

namespace TEST
{
    class chartscopier
    {
        //var Timer = new Timer(CopyGraph, null, 0, 60000);
        public static void CopyGraph(object data)
        {
            Stopwatch strTimer = new Stopwatch();
            WebClient WC = new WebClient();
            IConfigSource BaseConfig = new IniConfigSource(@"D:\NEWROBOT\CONFIG.ini");
            string LogDir = BaseConfig.Configs["GENERAL"].Get("Log Dir");
            string ImgDir = BaseConfig.Configs["GENERAL"].Get("IMG Dir");
            string[] Clients = BaseConfig.Configs["CLIENTS"].GetKeys();
            foreach (string Client in Clients)
            {
                strTimer.Start();
                //Console.WriteLine(Client);
                IConfigSource ClientConfig = new IniConfigSource(@"D:\NEWROBOT\" + Client + ".ini");
                string[] Services = ClientConfig.Configs["SERVICES"].GetKeys();
                foreach (string Service in Services)
                {
                    string url = BaseConfig.Configs["CLIENTS"].Get(Client);
                    string param = ClientConfig.Configs["SERVICES"].Get(Service);
                    string html = WC.DownloadString(url + param);

                    // Cargar doc en HPACK
                    HtmlDocument doc = new HtmlDocument();
                    doc.LoadHtml(html);

                    // LINQ para generar imagenes
                    var img = doc.DocumentNode.SelectSingleNode("//img[1]");
                    var src = img.Attributes["src"].Value;
                    string uIMG = url + src;
                    WC.DownloadFile(uIMG, @ImgDir + Client + "\\" + Service + ".png");
                }
                strTimer.Stop();
                TimeSpan ts = strTimer.Elapsed;
                string elapsedTime = String.Format("{0:00}:{1:00}:{2:00}.{3:00}", ts.Hours, ts.Minutes, ts.Seconds, ts.Milliseconds / 10);
                strTimer.Reset();
                // WANT TO WRITE HERE Form1.TextBox1.text = "RunTime " + elapsedTime;
            }
        }
    }
}

Answer 1:

我认为,更好的办法是通过事件来处理。

创建一个类来表示要传递数据。

public class ChartCopyProgressEventArgs : EventArgs
{
  public TimeSpan ElapsedTime { get; set; }
  //you can add more prop.s here
}

在“chartscopier”创建活动报告进度。

class chartscopier
{
 public static event EventHandler<ChartCopyProgressEventArgs> Changed;
 public static void CopyGraph(object data)
 {
 ...
 if (Changed != null)
 {
   var args = new ChartCopyProgressEventArgs();
   args.ElapsedTime = elapsedTime;
   Changed(null, args);
 }
 }
}

然后在Form1中,创建该事件的处理程序。

public Form1()
{
 InitializeComponent();
 chartscopier.Changed += UpdateStatus;
 ...
}

private void UpdateStatus(object sender, ChartCopyProgressEventArgs e)
{ 
    var ts = e.ElapsedTime;
    var elapsedTime = String.Format("{0:00}:{1:00}:{2:00}.{3:00}", ts.Hours, ts.Minutes, ts.Seconds, ts.Milliseconds / 10);
    var str = "RunTime " + elapsedTime;

    if (TextBox1.InvokeRequired) {
        TextBox1.Invoke(() => {TextBox1.text = str;});
    } else {
         TextBox1.text = str;
    }
}


Answer 2:

你需要的形式传递给函数,以便您可以访问它,然后在表格上写一个公共函数修改/获取文本框。 确保如果需要调用两个功能检查。



Answer 3:

您需要将您想要的参考chartscopier.CopyGraph直接操作的方法,因此它可以范围之内。 你CopyGraph(object data)的签名应该更像CopyGraph(object data, TextBox aTextBox)

然后,你可以从你的Form1的实例喜欢叫它

chartscopier.CopyGraph(data,this.textBox1)


Answer 4:

这个例子将告诉你如何从其他类访问表单元素:

public partial class Form1 : Form
    {       
        private void button1_Click(object sender, EventArgs e)
        {
            FormCopier fc = new FormCopier();
            fc.PopulateTest(this.textBox1);
        }
    }  

而在其他类..

class FormCopier
{
    public void PopulateTest(TextBox t)
    {
        t.Text = "Demo";
        t.Refresh();
    }
}


文章来源: Accesing C# Form textbox from another class file