⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 layoutorientationitems.java

📁 SWING的界面UI包 SWING的界面UI包
💻 JAVA
字号:
/* * LayoutOrientationWrapper.java * * Created on 2007-8-29, 1:57:02 * * To change this template, choose Tools | Templates * and open the template in the editor. */package dyno.swing.designer.properties.items;import dyno.swing.designer.properties.wrappers.*;import dyno.swing.designer.properties.types.Item;import javax.swing.JList;/** * * @author William Chen */public class LayoutOrientationItems implements ItemProvider {    private static Item[] VALUE_ITEMS = {        new Item("VERTICAL", JList.VERTICAL, "javax.swing.JList.VERTICAL"),         new Item("HORIZONTAL_WRAP", JList.HORIZONTAL_WRAP, "javax.swing.JList.HORIZONTAL_WRAP"),         new Item("VERTICAL_WRAP", JList.VERTICAL_WRAP, "javax.swing.JList.VERTICAL_WRAP")    };    public LayoutOrientationItems() {    }    @Override    public Item[] getItems() {        return VALUE_ITEMS;    }}

⌨️ 快捷键说明

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