Microsoft.VisualStudio.Project.NativeMethods.IsDialogMessageA C# (CSharp) Method

IsDialogMessageA() private method

private IsDialogMessageA ( IntPtr hDlg, MSG &msg ) : bool
hDlg System.IntPtr
msg MSG
return bool
        public static extern bool IsDialogMessageA(IntPtr hDlg, ref MSG msg);

Usage Example

Esempio n. 1
0
        public virtual int TranslateAccelerator(MSG[] arrMsg)
        {
            MSG msg = arrMsg[0];

            if ((msg.message < NativeMethods.WM_KEYFIRST || msg.message > NativeMethods.WM_KEYLAST) && (msg.message < NativeMethods.WM_MOUSEFIRST || msg.message > NativeMethods.WM_MOUSELAST))
            {
                return(1);
            }

            return((NativeMethods.IsDialogMessageA(this.panel.Handle, ref msg)) ? 0 : 1);
        }
All Usage Examples Of Microsoft.VisualStudio.Project.NativeMethods::IsDialogMessageA