public static bool InitComboBoxInfo(ref KryptonComboBox cbo, ref WIN32.ComboBoxInfo cbi)
 {
     cbi.cbSize = Marshal.SizeOf(cbi);
     if (!WIN32.GetComboBoxInfo(cbo.Handle, ref cbi))
     {
         return(false);
     }
     return(true);
 }
 public static extern IntPtr SendMessageCb(IntPtr hWnd, int msg, IntPtr wp, out WIN32.ComboBoxInfo lp);