要在Winform中重寫WndProc,您需要創建一個繼承自Control類的自定義控件,然后重寫其WndProc方法。下面是一個簡單的示例代碼:
using System;
using System.Windows.Forms;
public class CustomControl : Control
{
protected override void WndProc(ref Message m)
{
// 在這里處理窗口消息
switch (m.Msg)
{
case 0x0201: // 鼠標左鍵按下
// 處理鼠標左鍵按下事件
break;
case 0x0202: // 鼠標左鍵釋放
// 處理鼠標左鍵釋放事件
break;
// 添加其他需要處理的窗口消息
}
base.WndProc(ref m);
}
}
在上面的示例中,我們創建了一個CustomControl類,它繼承自Control,并重寫了WndProc方法。在WndProc方法中,我們可以通過檢查m.Msg屬性來處理特定的窗口消息。您可以根據需要添加更多的窗口消息處理邏輯。
要使用自定義的控件,您可以在Winform窗體中實例化CustomControl并添加到窗體的Controls集合中:
CustomControl customControl = new CustomControl();
this.Controls.Add(customControl);
這樣,您就可以在Winform中重寫WndProc并處理窗口消息了。