为什么删除了初始iizecomponent对于重新创建事件不起作用



请帮助我了解以下问题。

我有一个演示c#wifters .NET项目。我有一个有效的numericupdown_valuechanged事件。如果我单击"按钮1",则从数字中删除该事件。因此,此事件不再起作用。当我单击按钮2时,我调用initializecomponent方法。

问题:为什么这不为我的NumericUpdown控件重新创建事件?有没有机会将事件分配回控件?

我不想这样做:

numericUpDown1.ValueChanged += numericUpDown1_ValueChanged;

我的代码

public partial class Form1 : Form {
    public Form1() {
        InitializeComponent();
    }
    private void button1_Click(object sender, EventArgs e) {
        numericUpDown1.ValueChanged -= numericUpDown1_ValueChanged;
    }
    private void numericUpDown1_ValueChanged(object sender, EventArgs e) {
        Console.WriteLine(numericUpDown1.Value);
    }
    private void button2_Click(object sender, EventArgs e) {
        InitializeComponent();
    }
}

我的.designer文件

partial class Form1 {
    /// <summary>
    /// Required designer variable.
    /// </summary>
    private System.ComponentModel.IContainer components = null;
    /// <summary>
    /// Clean up any resources being used.
    /// </summary>
    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    protected override void Dispose(bool disposing) {
        if (disposing && (components != null)) {
            components.Dispose();
        }
        base.Dispose(disposing);
    }
    #region Windows Form Designer generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent() {
        this.button1 = new System.Windows.Forms.Button();
        this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
        this.button2 = new System.Windows.Forms.Button();
        ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
        this.SuspendLayout();
        // 
        // button1
        // 
        this.button1.Location = new System.Drawing.Point(80, 139);
        this.button1.Name = "button1";
        this.button1.Size = new System.Drawing.Size(75, 23);
        this.button1.TabIndex = 0;
        this.button1.Text = "button1";
        this.button1.UseVisualStyleBackColor = true;
        this.button1.Click += new System.EventHandler(this.button1_Click);
        // 
        // numericUpDown1
        // 
        this.numericUpDown1.Location = new System.Drawing.Point(123, 47);
        this.numericUpDown1.Name = "numericUpDown1";
        this.numericUpDown1.Size = new System.Drawing.Size(120, 20);
        this.numericUpDown1.TabIndex = 1;
        this.numericUpDown1.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
        // 
        // button2
        // 
        this.button2.Location = new System.Drawing.Point(155, 93);
        this.button2.Name = "button2";
        this.button2.Size = new System.Drawing.Size(75, 23);
        this.button2.TabIndex = 2;
        this.button2.Text = "button2";
        this.button2.UseVisualStyleBackColor = true;
        this.button2.Click += new System.EventHandler(this.button2_Click);
        // 
        // Form1
        // 
        this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        this.ClientSize = new System.Drawing.Size(284, 262);
        this.Controls.Add(this.button2);
        this.Controls.Add(this.numericUpDown1);
        this.Controls.Add(this.button1);
        this.Name = "Form1";
        this.Text = "Form1";
        ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
        this.ResumeLayout(false);
    }
    #endregion
    private System.Windows.Forms.Button button1;
    private System.Windows.Forms.NumericUpDown numericUpDown1;
    private System.Windows.Forms.Button button2;
}

第二次调用初始InitializeComponent是不正确的。虽然它有效,但如果无法正确处理,它会在您的程序中创建很多错误。

当您第二次调用初始InitializeComponent时,您会添加另一个 numericupdown 控制实例,以及您表单中每个UI元素的第二个实例。
这些第二个实例处于第一例的确切位置,但在第一个实例(Z命令)下方。
控制变量(NumericUpdown1,button1,button2)现在引用这些新实例而不是原始实例。

NumericUpdown的第二个实例获取事件处理程序分配了。
但是您无法单击它,因为它仍然在第一个拥有事件处理程序的第一个下方。

如果您要第二次调用初始Initializecomponent,则需要大规模编辑或第一次从表单的控件集合中删除所有内容,毕竟这很有可能拧紧所有内容。

对于第一个选项,您可能会受到打击(无法免费创建控件),因为您可以自己看到的第二个选择者的代码注释,它提醒您,如果您尝试编辑或尝试编辑或弄乱此功能。

要证明它只需更改您的按钮2单击处理程序

private void button2_Click(object sender, EventArgs e)
{
    InitializeComponent();
    // Show the problem with a second call to InitializeComponent
    // The UD control moved is the second one with its handler active.
    numericUpDown1.Location = new Point(0,0);
}

现在,您可以看到两个数字Updown控件,如果单击零位置,您会看到它对您的点击反应时,而第一个则无反应。

删除事件处理程序后,放置事件处理程序的适当方法是 =运算符。您可以阅读此答案以发现事件处理程序是否已经添加

相关内容

  • 没有找到相关文章

最新更新