51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#安全组件
List接口的实现类(Vector)(与ArrayList相似,区别是Vector是重量级的组件,使用使消耗的资源比较多。)
LinkedList提供以下方法:(ArrayList无此类方法)addFirst(); removeFirst(); addLast(); removeLast();在堆栈中,push为入栈操作,pop为出栈操作。 Push用addFirst...
代码星球
·
2021-02-12
Vector
List
接口
实现
ArrayList
e824. 获得和设置JSplitPane中的子组件
//Createaleft-rightsplitpaneJSplitPanehpane=newJSplitPane(JSplitPane.HORIZONTAL_SPLIT,leftComponent,rightComponent);//Createatop-bottomsplitpaneJSplitPanevpane=...
代码星球
·
2021-02-12
e824.
获得
设置
JSplitPane
中的
e786. 创建JSpinner组件
Thisexampledemonstrateshowtobuildthreekindsofspinners.Anumberspinner://CreateanumberspinnerJSpinnerspinner=newJSpinner();//Setitsvaluespinner.setValue(newIntege...
代码星球
·
2021-02-12
e786.
创建
JSpinner
组件
e794. 创建JSlider组件
//Createahorizontalsliderwithmin=0,max=100,value=50JSliderslider=newJSlider();//Createahorizontalsliderwithcustomminandmax;valueissettothemiddleintminimum=-255;...
代码星球
·
2021-02-12
e794.
创建
JSlider
组件
e861. 在两个组件之间共享输入映射和事件映射
BysharinganInputMaporActionMap,anychangetothesharedInputMaporActionMapwillaffectallcomponentssharingtheInputMaporActionMap.WHEN_FOCUSEDandWHEN_ANCESTOR_OF_FOCUS...
代码星球
·
2021-02-12
映射
e861.
两个
组件
之间
e802. 创建一个位置大小的JProgressBar组件
Aprogressbarwithanunknownmaximumtypicallydisplaysananimationuntilthetaskiscomplete.Note:Thepercentagedisplayshouldnotbeenabledwhenthemaximumisnotknown(e804显示JPr...
代码星球
·
2021-02-12
e802.
创建
一个
位置
小的
e801. 创建一个JProgressBar组件
Aprogressbarisusedtovisuallyindicatehowmuchataskhasbeenprogressed.Aprogressbarcanbeorientedhorizontally(left-to-right)orvertically(bottom-to-top).Bydefault,theo...
代码星球
·
2021-02-12
e801.
创建
一个
JProgressBar
组件
e812. 强制弹出菜单为重组件
Bydefault,SwingpopupmenususedbyJMenuandJPopupMenuarelightweight.Ifheavyweightcomponentsareusedinthesameframe,thepopupmenusmayappearbehindtheheavyweightcomponent...
代码星球
·
2021-02-12
e812.
强制
弹出
菜单
为重
e776. 设置JList组件项的提示语
//Createalist,overridingthegetToolTipText()methodString[]items={"A","B","C","D"};JListlist=newJList(items){//Thismethodiscalledasthecursormoveswithinthelist.pub...
代码星球
·
2021-02-12
e776.
设置
JList
组件
提示语
e775. 设置JList组件项的维数
Bydefault,thewidthofthelistisdeterminedbythelongestitemandtheheightisdeterminedbythenumberofvisiblelinesmultipliedbythetallestitem.Thisexampledemonstrateshowtoo...
代码星球
·
2021-02-12
e775.
设置
JList
组件
维数
e777. 获得JList组件的所有项
//CreatealistString[]items={"A","B","C","D"};JListlist=newJList(items);//Getnumberofitemsinthelistintsize=list.getModel().getSize();//4//Getallitemobjectsfor(in...
代码星球
·
2021-02-12
e777.
获得
JList
组件
有项
e774. 创建JList组件
Bydefault,alistallowsmorethanoneitemtobeselected.Also,theselecteditemsneednotbecontiguous.Tochangethisdefault,seee781设置JList中的选择模式.Alistselectioneventisfiredwhe...
代码星球
·
2021-02-12
e774.
创建
JList
组件
e860. 列出组件绑定的键盘键
Thisexampledemonstrateshowtolistallthekeybindingsinacomponent.Textcomponentshaveanadditionalsetofkeybindingscalledakeymap.Seee1005列出JTextComponent中键盘映射绑定的键foran...
代码星球
·
2021-02-12
e860.
列出
组件
定的
键盘
e856. 列出一个组件的所有事件
Thisexampledemonstrateshowtolistalltheactionsinacomponent.ActionMapmap=component.getActionMap();//Listactionsinthecomponentlist(map,map.keys());//Listactionsint...
代码星球
·
2021-02-12
e856.
列出
一个
组件
所有
e739. 创建一个标签组件
//Thetextisleft-justifiedandverticallycenteredJLabellabel=newJLabel("TextLabel");//Thetextishorizontallyandverticallycenteredlabel=newJLabel("TextLabel",JLabel....
代码星球
·
2021-02-12
e739.
创建
一个
标签
组件
首页
上一页
...
10
11
12
13
14
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他