BKMODE.cs 562 B

12345678910111213141516171819
  1. namespace Microsoft.Win32
  2. {
  3. //BKMODE定义
  4. public static partial class NativeMethods
  5. {
  6. /// <summary>
  7. /// Background remains untouched.
  8. /// </summary>
  9. public const int TRANSPARENT = 1;
  10. /// <summary>
  11. /// Background is filled with the current background color before the text, hatched brush, or pen is drawn.
  12. /// </summary>
  13. public const int OPAQUE = 2;
  14. /// <summary>
  15. /// 无效,值与OPAQUE相同
  16. /// </summary>
  17. public const int BKMODE_LAST = 2;
  18. }
  19. }