C#从另一个类获取计时器值

时间:2019-07-14 21:03:39

标签: c# winforms

我发现此代码与我需要执行的操作类似。

需要找到打开的Form1而不是创建另一个Form1,请创建

以下课程

g = [[], ['woof'], ['quack', 'quack']]

然后在您的按钮中单击方法

using System;               
using System.Collections.Generic;          
using System.Linq;    
using System.Text;    
using System.Diagnostics;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    class Class1
    {
        public void someMethod()    
        {    
            TextBox t = Application.OpenForms["Form1"].Controls["textBox1"]
                as TextBox;    

            Debug.WriteLine(t.Text + "what?");    
        }
    }
}

我试图用它创建自己的代码,但是有人可以帮忙吗?

这是我尝试创建的代码

private void button1_Click(object sender, EventArgs e)    
{    
    Class1 c = new Class1();

    c.someMethod();
}

0 个答案:

没有答案