ComboBoxInfo.cs 398 B

123456789101112131415161718
  1. namespace SAGA.DotNetUtils
  2. {
  3. using System;
  4. using System.Runtime.InteropServices;
  5. [StructLayout(LayoutKind.Sequential)]
  6. public struct ComboBoxInfo
  7. {
  8. public int cbSize;
  9. public RECT rcItem;
  10. public RECT rcButton;
  11. public IntPtr stateButton;
  12. public IntPtr hwndCombo;
  13. public IntPtr hwndEdit;
  14. public IntPtr hwndList;
  15. }
  16. }