namespace Microsoft.Win32 { //BKMODE定义 public static partial class NativeMethods { /// /// Background remains untouched. /// public const int TRANSPARENT = 1; /// /// Background is filled with the current background color before the text, hatched brush, or pen is drawn. /// public const int OPAQUE = 2; /// /// 无效,值与OPAQUE相同 /// public const int BKMODE_LAST = 2; } }