CW.cs 274 B

1234567891011
  1. namespace Microsoft.Win32
  2. {
  3. //CW定义
  4. public static partial class NativeMethods
  5. {
  6. /// <summary>
  7. /// CreateWindow x,y,nWidth,nHeight 默认值
  8. /// </summary>
  9. public const int CW_USEDEFAULT = unchecked((int)0x80000000);
  10. }
  11. }