Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Mobile

correct simulate OnClick-Event on every Control in .NET Compact Framework

0.00/5 (No votes)
25 Aug 2010CPOL 12.3K  
.NET Compact Framework
Your search ends here...

Here is the correct Source to simulate an OnClick-Event on every Control in .NET Compact Framework.


[DllImport("coredll")]
        private static extern void SendMessage(IntPtr hWnd, int msg, int wparam, int lparam);
        const int WM_LBUTTONDOWN = 0x201;
        const int WM_LBUTTONUP = 0x202;
        public void PerformClick(System.Windows.Forms.Control control)
        {
            SendMessage(control.Handle, WM_LBUTTONDOWN, 0, 0);
            control.Update();
            System.Threading.Thread.Sleep(100);
            SendMessage(control.Handle, WM_LBUTTONUP, 0, 0);
        }

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)