我知道这是糟糕的设计,但我一直在将我的GUI Form Class的控制转移到我的C#程序中的其他类。
现在使用以下方法已经很好了,使用:
var form = Form.ActiveForm as Form1;
随着我的程序越来越大,表单被更多的类打开,它的行为变得随机。我有时可以将程序运行到没有错误的结果,但有时它会选择一个随机点并抛出NullReferenceException。
例如,以下两行代码来自调用的八个函数。
var form = Form.ActiveForm as Form1;
form.richTextBox1.AppendText("Section ID: ");
由于程序达到了这一点,我知道它能够传递表单并先前操作相同的字段。
关于为什么它选择抛出它的任何想法,当以前完全相同的事情?
据我所知,Form1是唯一的形式。我是100%绿色的GUI开发和C#/ .NET,所以我可能在这里错了。
我有一个理论如下:继承Form对象有两个类,Reader和Analyze。 Reader首先没有问题地继承它。 Analyze中立即引发了这个问题。我是不是放弃了Reader类中的表单?
编辑:我的第一个预感是使用ActiveForm属性的多个类导致了问题。我把所有的函数都放到了Reader类中。这并没有解决问题。
以下是Reader中的两种方法。第一个是在SectionHeaderMatch()之前调用read()。 Read使用ActiveForm属性并且永远不会出现问题,就像之前调用的另一个方法一样。 SectionHeaderMatch是使用ActiveForm属性的第三种方法。在此方法中,窗体设置为null,而不是Form1。我假设read()中的某些东西搞砸了。
public static void read()
{
var form = Form.ActiveForm as Form1;
StringBuilder outPut = new StringBuilder();
outPut.Append(form.textBox2.Text);
outPut.Append("\\out.txt");
string cardDrive = String.Format("\\\\.\\{0}", form.textBox1.Text);
cardDrive = cardDrive.Remove(6);
SafeFileHandle fileHandle = CreateFile(cardDrive, 0x80000000, 0, IntPtr.Zero, 3, 0, IntPtr.Zero);
FileStream readStream = new FileStream(fileHandle, FileAccess.Read);
BinaryReader reader = new BinaryReader(readStream);
FileStream writeStream = File.OpenWrite(outPut.ToString()); //Writing stream opened at the specified directory of output.
long gigsRead; //Loop counter that specifies the number of gigabytes read thus far.
long megsRead; //Loop counter that specifies the number of megabytes read thus far within the current gigabyte.
for (gigsRead = 0; gigsRead < 0; gigsRead++)
{
for (megsRead = 0; megsRead < 1024; megsRead++)
{
byte[] buffer = new byte[1048576];
long position = gigsRead * 1073741824 + megsRead * 1048576;
reader.BaseStream.Position = position;
reader.Read(buffer, 0, 1048576); //Read from SD card to buffer
writeStream.Write(buffer, 0, 1048576); //Write from buffer to output text file.
writeStream.Flush();
}
}
for (megsRead = 0; megsRead < 432; megsRead++)
{
byte[] buffer = new byte[1048576];
long gigSize = 1073741824;
long position = 7 * gigSize + megsRead * 1048576;
reader.BaseStream.Position = position;
reader.Read(buffer, 0, 1048576); //Read from SD card to buffer
writeStream.Write(buffer, 0, 1048576); //Write from buffer to output text file.
writeStream.Flush();
}
writeStream.Close();
readStream.Close();
reader.Close();
fileHandle.Close();
outPut.Clear();
}
public static void SectionHeaderMatch()
{
var form = Form.ActiveForm as Form1;
if (form == null)
{
}
else
{
StringBuilder outPut = new StringBuilder();
outPut.Append(form.textBox2.Text);
outPut.Append("\\out.txt");
FileStream readFile = new FileStream(outPut.ToString(), FileMode.Open, FileAccess.Read);
BinaryReader readerFile = new BinaryReader(readFile);
//Sector 1
readerFile.BaseStream.Position = 1073741824;
byte[] sectorOne = new byte[Form1.blockSize];
readerFile.Read(sectorOne, 0, Form1.blockSize);
//Sector 2
readerFile.BaseStream.Position = 1073741824 + Form1.blockSize;
byte[] sectorTwo = new byte[Form1.blockSize];
readerFile.Read(sectorTwo, 0, Form1.blockSize);
readerFile.Close();
readFile.Close();
string sector1 = UtilityClass.ByteArrayToString(sectorOne);
string sector2 = UtilityClass.ByteArrayToString(sectorTwo);
if (String.Compare(sector1, sector2) == 0) //0 if they match
{
if (headerMatchRunCount == 0) //If this is section 1
{
form.richTextBox3.AppendText("Section 1 headers match.");
}
else //Section 2
{
form.richTextBox4.AppendText("Section 2 headers match.");
}
}
else //Headers did not match
{
if (headerMatchRunCount == 0) //Section 1
{
form.richTextBox3.AppendText("Section 1 headers match.");
}
else //Section 2
{
form.richTextBox4.AppendText("Section 2 headers match.");
}
}
}
}
答案 0 :(得分:4)
在几个小时内跳动后,我终于找到了为什么activateForm有时为空...
activateForm采用“IDE”形式,而不仅仅是生成的C#表单..
我解释一个例子: 第一个循环,我启动我的应用程序没有任何破解码,并在我的“activateForm()”执行后放置一个破解码,它的工作原理。
在同一个循环中第二次,我打开断点,并且activateForm()不再起作用。 为什么? 因为“ActivateForm”不再是我的C#形式...... 但这是我的“视觉工作室代码页”。
我不知道它是否对你的案件有所帮助,但它对我有帮助。
答案 1 :(得分:2)
ActiveForm
看起来并不总是Form1
。您可能有一种不同类型的表单(可能是对话框?)是活动的。当您尝试as Form1
时,结果为null
。