有沒有在C#中類似WndProc方法聽OS messages.I不能使用的WndProc,因爲,我的課既不是表,也不繼承自Control(它的DLL)聽OS的消息在C#
protected override void WndProc(ref System.Windows.Forms.Message m)
{
switch (m.Msg)
{
// listen os messages
// Ueye Message
case uEye.IS_UEYE_MESSAGE:
//fetch frame
break;
}
base.WndProc(ref m);
}
任何方法
我把這個作爲評論,因爲我不確定,但我認爲你可以使用WMI。我用它來聽取可移動的USB驅動器。 – 2011-04-08 06:40:20
@JonasVan你可以給我一些鏈接如何使用它?(例子)...謝謝 – 2011-04-08 06:47:26
我會給你我正在研究的項目。 – 2011-04-08 06:52:22