Esempio n. 1
0
 private bool OnKillFocus(Message m)
 {
     // If the control is a combobox don't end edit if the handle is a handle
     // of one of the sub controls of the combobox
     if(!(_control is ComboBox)) return true;
     APIsStructs.COMBOBOXINFO info = new APIsStructs.COMBOBOXINFO();
     info.cbSize = (int)Marshal.SizeOf(typeof(APIsStructs.COMBOBOXINFO));
     if(!APIsUser32.GetComboBoxInfo(_control.Handle, ref info)) return true;
     if(m.WParam == info.hwndCombo || m.WParam == info.hwndItem || m.WParam == info.hwndList)
     {
         ReleaseHandle();
         AssignHandle(m.WParam);
         return false;
     }
     return true;
 }
Esempio n. 2
0
 internal static extern bool GetComboBoxInfo(IntPtr hWnd, ref APIsStructs.COMBOBOXINFO cbi);