123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using System;
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct COMBOBOXINFO
- {
-
-
-
- public int cbSize;
-
-
-
- public RECT rcItem;
-
-
-
- public RECT rcButton;
-
-
-
-
-
-
-
-
-
-
- public int stateButton;
-
-
-
- public IntPtr hwndCombo;
-
-
-
- public IntPtr hwndItem;
-
-
-
- public IntPtr hwndList;
- }
- }
- }
|