并且还没有在新类中创建form1的新实例。 在form1中,我有一个公开的方法:
public void Test()
{
}
然后这个班:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Timers;
using System.Windows.Forms;
namespace ScrollLabelTest
{
class SaveOldHtml
{
private static Form frm1 = null;
private static int count;
private static System.Timers.Timer _timer = new System.Timers.Timer();
private static string page;
private static List<string> newText = new List<string>();
public SaveOldHtml(string DirectoryToSave,int count, string contents)
{
System.IO.File.WriteAllText(DirectoryToSave + "Page" + count.ToString("D6")
+ ".html", contents);
}
public SaveOldHtml(string DirectoryToSave, List<string> newTextList, int count)
{
using (StreamWriter myStream = new StreamWriter(DirectoryToSave + "newTextList" + count.ToString("D6")
+ ".txt"))
{
for (int i = 0; i < newTextList.Count; i++)
{
myStream.WriteLine(newTextList[i]);
}
}
}
public static void Start(Form1 form)
{
frm1 = form;
_timer.Elapsed += _timer_Elapsed;
_timer.Interval = 10000;
count = 5;
LoadOldHtmlFiles();
_timer.Start();
}
但是frm1没有从form1获得方法的属性。 我需要在这个form1类中创建新实例?或者没有任何其他方法没有制作实例并且没有使方法静态?
答案 0 :(得分:0)
您正在将构造函数中的参数存储为其基本类型Form而不是它的实际类型Form1。
更改
private static Form frm1 = null;
到
private static Form1 frm1 = null;
和frm1.Test()将可用。