miscellaneousconstants.java

来自「java 调用windows的api」· Java 代码 · 共 31 行

JAVA
31
字号
//******************************************************************
// Released under the DevelopMentor OpenSource Software License.
// Please consult the LICENSE file in the project root directory,
// or at http://www.develop.com for details before using this
// software.
//******************************************************************

package org.jawin.donated.win32;

/**
 * constants that I haven't gotten around to declaring
 * with their siblings
 */
 
public class MiscellaneousConstants {
    
	private MiscellaneousConstants() {
		// private constructor to keep class from being instantiated.
	}
	
    public static final int NULL = 0;
    public static final int IDI_APPLICATION = 32512;
    public static final int IDC_ARROW = 32512;
    public static final int CS_VREDRAW = 0x0001;
    public static final int CS_HREDRAW = 0x0002;
    public static final int WHITE_BRUSH = 0;
    public static final int CW_USEDEFAULT = 0x80000000;
    public static final int SW_SHOW = 5;
}

⌨️ 快捷键说明

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