触发事件
作者:互联网
我的班级有一个私人物品.如果那个对象触发了一个事件,我想将该事件传递给正在使用我的类的任何东西.目前,我是通过这种方式完成的,我将其放入构造函数中:
cbName.CheckedChanged += ((sender, args) => this.CheckChanged(this,args));
有没有更好的方法来执行此操作,是否有类似类的陷阱不会被处理,因为它本身有一个事件,因此我需要在dispose函数中手动退订?
将发件人从触发对象更改为可选对象.
完整版的测试代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace placeholder
{
internal class FilterBase : UserControl, IFilterObject
{
public FilterBase(string name)
{
InitializeComponent();
cbName.CheckedChanged += ((sender, args) => this.CheckChanged(this,args));
cbName.Name = name;
this.Name = name;
}
private CheckBox cbName;
/// <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 Component 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.cbName = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// cbName
//
this.cbName.AutoSize = true;
this.cbName.Location = new System.Drawing.Point(4, 4);
this.cbName.Name = "cbName";
this.cbName.Size = new System.Drawing.Size(79, 17);
this.cbName.TabIndex = 0;
this.cbName.Text = "Filter Name";
this.cbName.UseVisualStyleBackColor = true;
//
// UserControl1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.Controls.Add(this.cbName);
this.Name = "Filter Name";
this.Size = new System.Drawing.Size(86, 24);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
public event EventHandler CheckChanged;
public bool Checked
{
get { return cbName.Checked; }
}
}
}
解决方法:
事件实际上类似于自动属性.您可以定义自己的添加和删除方法,这些方法将委托直接传递给子控件,从而消除了额外的间接访问:
public event EventHandler CheckChanged {
add { cbName.CheckChanged += value; }
remove { cbName.CheckChanged -= value; }
}
这将删除存储在您的班级中的额外委托(因为在标准事件的幕后使用了委托字段)
标签:events,c,net-4-0 来源: https://codeday.me/bug/20191106/1998829.html