java swt键盘KeyCode列表(三)

2014-11-24 08:12:24 · 作者: · 浏览: 1
al int KEY_INSERT = 16777225;
/**
* DELETE键
*/
public static final int KEY_DELETE= 127;
/**
* HOME键
*/
public static final int KEY_HOME = 16777223;
/**
* END键
*/
public static final int KEY_END= 16777224;
/**
* PAGE UP键
*/
public static final int PAGE_UP = 16777221;
/**
* PAGE DOWN键
*/
public static final int PAGE_DOWN= 16777222;

}


摘自 lpdx111的专栏