swp.cs

来自「破解的飞信源代码」· CS 代码 · 共 25 行

CS
25
字号
namespace Imps.Client.Utils.Win32
{
    using System;

    public class SWP
    {
        public const uint ASYNCWINDOWPOS = 0x4000;
        public const uint DEFERERASE = 0x2000;
        public const uint DRAWFRAME = 0x20;
        public const uint FRAMECHANGED = 0x20;
        public const uint HIDEWINDOW = 0x80;
        public const uint NOACTIVATE = 0x10;
        public const uint NOCOPYBITS = 0x100;
        public const uint NOMOVE = 2;
        public const uint NOOWNERZORDER = 0x200;
        public const uint NOREDRAW = 8;
        public const uint NOREPOSITION = 0x200;
        public const uint NOSENDCHANGING = 0x400;
        public const uint NOSIZE = 1;
        public const uint NOZORDER = 4;
        public const uint SHOWWINDOW = 0x40;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?