我知道这是糟糕的设计,但我一直在将我的 GUI 表单类的控制权转移到我的 C# 程序中的其他类。
这已经工作了很长时间了,使用:
var form = Form.ActiveForm as Form1;
随着我的程序越来越大,并且表单被更多类打开,它的行为变得随机。有时我可以毫无错误地运行我的程序,但有时它会随机选择一个点并抛出 NullReferenceException。
例如,以下两行代码来自被调用的八个函数。
var form = Form.ActiveForm as Form1;
form.richTextBox1.AppendText("Section ID: ");
由于程序到了这一点,我知道它之前能够传递表单并操作相同的字段。
当完全相同的事情以前起作用时,关于它为什么选择抛出它的任何想法?
据我所知,Form1 是唯一的形式。我对 GUI 开发和 C#/.NET 是 100% 的绿色,所以我在这里可能错了。
我的一种理论如下:有两个类,Reader 和 Analyze,它们继承了 Form 对象。阅读器首先继承它没有问题。问题立即在分析中抛出。我没有放弃阅读器课程中的表格吗?
编辑:我的第一个预感是使用 ActiveForm 属性的多个类会导致问题。我将所有函数都放入了 Reader 类。这并没有解决问题。
以下是 Reader 中的两种方法。第一个,read() 在 SectionHeaderMatch() 之前调用。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.");
}
}
}
}