// Static Create method called by the event tracker system
 internal static void RaiseEvents(IntPtr hwnd, int eventId, object idProp, int idObject, int idChild)
 {
     if (idObject != NativeMethods.OBJID_VSCROLL && idObject != NativeMethods.OBJID_HSCROLL)
     {
         WindowsRebar wtv = new WindowsRebar(hwnd, null, -1);
         wtv.DispatchEvents(eventId, idProp, idObject, idChild);
     }
 }
Ejemplo n.º 2
0
 // Static Create method called by the event tracker system
 internal static void RaiseEvents (IntPtr hwnd, int eventId, object idProp, int idObject, int idChild)
 {
     if (idObject != NativeMethods.OBJID_VSCROLL && idObject != NativeMethods.OBJID_HSCROLL)
     {
         WindowsRebar wtv = new WindowsRebar (hwnd, null, -1);
         wtv.DispatchEvents (eventId, idProp, idObject, idChild);
     }
 }