12345678910111213141516171819202122232425262728293031323334353637 |
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct GRADIENT_RECT
- {
-
-
-
- public uint UpperLeft;
-
-
-
- public uint LowerRight;
-
-
-
-
-
- public GRADIENT_RECT(uint upperLeft, uint lowerRight)
- {
- this.UpperLeft = upperLeft;
- this.LowerRight = lowerRight;
- }
- }
- }
- }
|