c# 中如何定義和接收訊息?(轉)

來源:互聯網
上載者:User
在C#中目前我還沒有找到發送訊息的類成員函數,所以只能採用通過調用WIN 32 API 的 SendMessage() 函數實現。由於 SendMessage的參數中需要得到表單的控制代碼(handler) ,所以又要調用另一個API FindWindow(), 兩者配合使用,達到在不同表單之間的訊息發送和接收功能。

另外一個要點是,需要通過重寫(Override) 表單的 DefWndProc() 過程來接收自訂的訊息。DefWndProc 的重寫:

protected override void DefWndProc(ref System.Windows.Forms.Message m)
{
switch(m.Msg)
{
case ...:
break;
default:
base.DefWndProc(ref m);
break;
}
}


下面是我的C#實踐常式。
------------------------------------
/////////////////////////////////////////
///file name: Note.cs
///
public class Note
{
//聲明 API 函數

[DllImport("User32.dll",EntryPoint="SendMessage")]
private static extern int SendMessage(
int hWnd, // handle to destination window
int Msg, // message
int wParam, // first message parameter
int lParam // second message parameter
);
[DllImport("User32.dll",EntryPoint="FindWindow")]
private static extern int FindWindow(string lpClassName,string
lpWindowName);
//定義訊息常數
public const int USER = 0x500;
public const int TEST = USER + 1;


//向表單發送訊息的函數

private void SendMsgToMainForm(int MSG)
{
int WINDOW_HANDLER = FindWindow(null,@"Note Pad");
if(WINDOW_HANDLER == 0)
{
throw new Exception("Could not find Main window!");
}
SendMessage(WINDOW_HANDLER,MSG,100,200);
}
}


/////////////////////////////////////////
/// File name : Form1.cs
/// 接收訊息的表單
///

public class Form1 : System.Windows.Forms.Form
{
public Form1()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
/// 重寫表單的訊息處理函數
protected override void DefWndProc(ref System.Windows.Forms.Message m)
{
switch(m.Msg)
{
//接收自訂訊息 USER,並顯示其參數
case Note.USER:
string message = string.Format ("Received message!
parameters are :{0},{1}",m.WParam ,m.LParam);
MessageBox.Show (message);
break;
default:
base.DefWndProc(ref m);
break;
}
//Console.WriteLine(m.LParam);
}
 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.