环境:.NET Framework 2.0,VS 2008。
我正在尝试创建某些 .NET 控件(标签、面板)的子类,它将通过某些鼠标事件(MouseDown
, MouseMove
, MouseUp
)传递到其父控件(或顶级表单)。我可以通过在标准控件的实例中为这些事件创建处理程序来做到这一点,例如:
public class TheForm : Form
{
private Label theLabel;
private void InitializeComponent()
{
theLabel = new Label();
theLabel.MouseDown += new MouseEventHandler(theLabel_MouseDown);
}
private void theLabel_MouseDown(object sender, MouseEventArgs e)
{
int xTrans = e.X + this.Location.X;
int yTrans = e.Y + this.Location.Y;
MouseEventArgs eTrans = new MouseEventArgs(e.Button, e.Clicks, xTrans, yTrans, e.Delta);
this.OnMouseDown(eTrans);
}
}
我无法将事件处理程序移动到控件的子类中,因为在父控件中引发事件的方法受到保护,并且我没有父控件的限定符:
无法
System.Windows.Forms.Control.OnMouseDown(System.Windows.Forms.MouseEventArgs)
通过 type 的限定符访问受保护的成员System.Windows.Forms.Control
;限定符必须是类型TheProject.NoCaptureLabel
(或派生自它)。
我正在研究WndProc
在我的子类中覆盖控件的方法,但希望有人能给我一个更清洁的解决方案。