当前位置: 技术问答>java相关
疑惑JComboBox,JRadioButton的API
来源: 互联网 发布时间:2015-11-13
本文导语: JComboBox有没有getText方法?如果没有,setEditable(true)后怎么,接受输到里面的String? JRadioButton有没有判断那个被选中的isSelected()方法?如果没有的话怎么知道她选中哪个?举个例子:有性别选择,男,女两项,我在外的B...
JComboBox有没有getText方法?如果没有,setEditable(true)后怎么,接受输到里面的String?
JRadioButton有没有判断那个被选中的isSelected()方法?如果没有的话怎么知道她选中哪个?举个例子:有性别选择,男,女两项,我在外的Button的点击事件里,要知道男女选的是哪个,怎么判断?
JRadioButton有没有判断那个被选中的isSelected()方法?如果没有的话怎么知道她选中哪个?举个例子:有性别选择,男,女两项,我在外的Button的点击事件里,要知道男女选的是哪个,怎么判断?
|
JComboBox没有gettext方法。关于seteditable(true),
An editable JComboBox allows the user to type into the field or selected an item from the list to initialize the field, after which it can be edited. (The editing affects only the field, the list item remains intact.) A non editable JComboBox displays the selected item in the field, but the selection cannot be modified.
关于接受输入到里面的string,我仅仅猜想可以用getAccessibleContext()
方法
An editable JComboBox allows the user to type into the field or selected an item from the list to initialize the field, after which it can be edited. (The editing affects only the field, the list item remains intact.) A non editable JComboBox displays the selected item in the field, but the selection cannot be modified.
关于接受输入到里面的string,我仅仅猜想可以用getAccessibleContext()
方法
|
JComboBox里用getSelectedItem()方法
在JRadioButton里用JRadioButton(String text, boolen selected)构建器
在添加ActionListener,如果selected = true执行actionPerformed()方法
在JRadioButton里用JRadioButton(String text, boolen selected)构建器
在添加ActionListener,如果selected = true执行actionPerformed()方法
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。