- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道这是糟糕的设计,但我一直将对 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 对象。 Reader首先继承它,没有问题。问题立即抛出到分析中。我不是放弃了Reader课上的表格吗?
编辑:我的第一预感是使用 ActiveForm 属性的多个类会导致问题。我将所有函数放入 Reader 类中。这并没有解决问题。
以下是 Reader 中的两种方法。首先,read() 在SectionHeaderMatch() 之前调用。 Read 使用 ActiveForm 属性并且永远不会出现问题,就像在它之前调用的另一个方法一样。 SectionHeaderMatch 是使用 ActiveForm 属性的第三种方法。在此方法中,form 设置为 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.");
}
}
}
}
最佳答案
经过几个小时的折腾,我终于找到了为什么 activateForm 有时为空......
activateForm 采用您的“IDE”表单,而不仅仅是生成您的 C# 表单。
我用一个例子来解释:第一个循环,我在没有任何中断代码的情况下启动我的应用程序,并在执行“activateForm()”之后放置一个中断代码并且它可以工作。
在同一个循环中第二次,我设置了断点,并且 activateForm() 不再起作用。为什么 ?因为“ActivateForm”不再是我的 C# 表单了...但这是我的“ Visual Studio Code 页”。
我不知道它是否对你的情况有帮助,但对我的情况有帮助。
关于c# - Form.ActiveForm 有时有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17117372/
我无法在新创建的按钮上获得新创建的窗体上的控件计数,我创建了 5 个控件,但只显示了一个。如果我无法获得控件总数,那么我也无法获得控件类型、名称等。 private void button2_Clic
这是我的模特联系人, public function rules() { return [ [['fname', 'status','mobile',], 'required'
我有一个 Jquery 函数来激活和停用基于当前表单的表单。当我单击提交按钮时,如果我将它设置为 ID,我可以在页面加载时获取事件表单的值,但第二个表单没有任何内容。当我将它设置为类时,它似乎根本没有
本文实例讲述了Yii2创建表单(ActiveForm)的方法。分享给大家供大家参考,具体如下: 由于表单涉及到一些验证方面的信息,属性设置又比较多、比较复杂,所以哪里有什么不正确的地方请留言指点
我知道这是糟糕的设计,但我一直将对 GUI 表单类的控制权转移到 C# 程序中的其他类。 这已经工作很长时间了,使用: var form = Form.ActiveForm as Form1; 随着我
在一个好的项目中,它应该是这样的: jQuery(document).ready(function() { jQuery('#form-signup')
在Yii 1.X版本中,我们可以在CActiveForm类的clientOptions属性中使用afterValidate,请告诉我正确的实现方法Yii2 中也是如此 最佳答案 我刚刚看到这些变化。我
下面的 View 由ajax渲染并从 Controller 返回到JS,JS将 View 放入正确的容器中: $page = $this->renderAjax("view", [
我正在创建一个表单 View ,我想使用官方的选项卡小部件组织具有选项卡结构的表单字段。 是否可以使用包含事件表单字段的 div 元素的 id(或类)来初始化 Tabs 小部件? 最佳答案 如何管理它
我想使用 yii2 ActiveForm 创建表单。这是我的代码: [ 'class' => 'form-inline' ] ]); ?> Email
根据official tutorial Yii2的。我为报名表创建了一个 View : field($model, 'name')->label('Your Name')
在我的mysql数据库中存在一个articleID作为AI PK和一个articleNumber,用户可以编辑。 问题: 在yii2 ActiveForm中,我想让用户输入articleNumber,
在我使用的旧 Yii 中 labelEx($model,'text').'* '); ?> 我应该在 yii2 中使用什么来标记? 最佳答案 Yii2 的方式如下: field($model,
我正在使用 Yii2 和 ActiveForm。 通常,如果 ActiveForm 中的任何输入已被使用,输入的名称应与 ActiveRecord 属性相同,即数据库中相关表的列名称。 出于某种原因我
我正在使用 Yii 开发一个项目。 我需要在网站的许多页面上使用 jquery ui。因此,我在网站布局中添加了 jquery 核心库和 jquery ui 库,以便在所有页面上访问它们。 但是它会在
在我的表单模型中,我有一个以这种方式定义的字段的自定义验证函数 class SignupForm extends Model { public function rules() {
我如何使用符合这些要求的 ActiveForm? 用ajax提交表单。 使用ajax提交之前:检查是否有错误退出。 提交后:如果服务器响应保存失败结果,则显示字段输入下的字段错误。 最佳答案 这是你的
在我的下拉列表中,当我选择百分比时,“vendor 佣金”(下一个字段)的标签应为“百分比”。当我选择金额时,标签应为“金额” if($model->userType!="ADMIN" && $mod
如何自动禁用 Yii(验证 onblur)ajax 验证?我只想在按下提交按钮后进行验证。 最佳答案 您想使用 enableAjaxValidation验证您的表单,同时不想在每个 blur 上触发
在同一个表单上有多个模型我不想在两个模型上保存数据,但我只想在 View 文件上显示一个变量 我有两张 table 组织者 和事件Organiser 将登录并创建事件现在两个表中有几个共同的字段所以当
我是一名优秀的程序员,十分优秀!