12345678910111213141516171819202122232425262728293031 |
- using System.Data;
- using System.Windows.Forms;
- namespace UAS_BARCODEIO
- {
-
-
-
-
-
- class GlobalEventsHandler : IMessageFilter
- {
- DataHelper dh;
-
- public const int WM_LBUTTONDOWN = 0x0201;
-
- public const int WM_KEYDOWN = 0x100;
- public bool PreFilterMessage(ref Message m)
- {
- return true;
- }
-
-
-
-
-
-
- }
- }
|