- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望在我的应用程序中包含此部分,允许用户添加更多选项(以 JradioButton 的形式)。因此,默认情况下,我在 JradioButton 中向用户提供一些选项,如果他们添加更多选项(在应用程序的其他部分);我的 Jframe 应该通过 Setup_Equipment_Frame 方法自动添加选项(如下所示),其中它获取基本上是用户添加的选项的字符串数组。我面临一些困难。
<小时/>代码:
<小时/>public void Setup_Equipment_frame(String a[]) //String_Array of Newly added options
{
//creating default options
JRadioButton option1 = new JRadioButton("Visual Stadio");
JRadioButton option2 = new JRadioButton("Netbeans");
JRadioButton option3 = new JRadioButton("Eclipse");
//Creating the button group
ButtonGroup group = new ButtonGroup();
group.add(option1);
group.add(option2);
group.add(option3);
//setting the frame layout
setLayout(new FlowLayout());
for(int i=0; i<=a.length-1;i++) //loop for how many new options are added
{
if(a[i] != null) //if the array's current item is not null
{
JRadioButton NewButton1= new JRadioButton(""+a[i]); //Add the Button
add(NewButton1);
}
}
//adding the default options
add(option1);
add(option2);
add(option3);
pack();
}
<小时/>
现在它确实可以工作了。我添加了单选按钮,但是由于添加的按钮的名称都是“NewButton1”,我无法对它们进行任何控制,并且我只能访问最后创建的 JRadioButton 和默认按钮。我不知道用户可能会添加多少新选项。
我的问题是如何自动创建具有不同名称的 JRadioButton。
如果我的问题或代码令人困惑,我提前道歉。我没有那么丰富的经验。
谢谢
<小时/>感谢您的回答,在您的帮助下,我只需添加 JradioButtons 数组就解决了问题
对于那些可能面临同样问题的人,适合我的代码如下:
已解决:
public void Setup_Equipment_frame(String a[])
{
int number_of_options=1;//number of new options
for(int i=0; i<=a.length-1;i++)
{
if(a[i] != null){
number_of_options++;
}
}
JRadioButton []v=new JRadioButton[number_of_options];
setLayout(new FlowLayout());
for(int z=0; z<=number_of_options-1;z++)
{if(a[z] != null){
{
v[z]=new JRadioButton(a[z]);
add(v[z]);
}
}
}
}
<小时/>
非常感谢
最佳答案
Now it actually works. I add the radio button however since the name of the added buttons are all "NewButton1", I can't have any control over them and I have access to only last created JRadioButton and the default ones. I don't know how many new options user might add.
不完全是,您可能会将对象与变量混淆。了解 JRadioButton 对象没有名称,没有对象有名称,是的,它们被创建然后分配给名为 NewButton1 的本地变量,该变量的范围仅限于for 循环,因此无论变量的名称如何,它甚至不存在于 for 循环之外。
实际上,您的问题本质上可以归结为:我如何才能获得引用一堆新创建的对象,有几个不错的解决方案,包括使用 JRadioButton 的 ArrayList,并将每个按钮添加到列表中。或者,如果您想将每个 JRadioButton 与一个字符串相关联,请改用 Map<String, JRadioButton>
.
顺便说一句,您将需要学习和使用Java naming conventions 。变量名应全部以小写字母开头,而类名应以大写字母开头。学习并遵循这一点将使我们更好地理解您的代码,并且将使您更好地理解其他人的代码。
这是一个使用 ArrayList<JRadioButton>
的示例
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.util.ArrayList;
import java.util.List;
import javax.swing.*;
@SuppressWarnings("serial")
public class AddRadioButtons extends JPanel {
private static final int PREF_W = 300;
private static final int PREF_H = 400;
// List that holds all added JRadioButtons
private List<JRadioButton> radioButtonList = new ArrayList<>();
// jpanel to hold radiobuttons in a verticle grid
private JPanel buttonPanel = new JPanel(new GridLayout(0, 1));
private JTextField radioBtnNameField = new JTextField(10);
public AddRadioButtons() {
// jpanel to add to jscrollpane
// nesting JPanels so that JRadioButtons don't spread out inside the scrollpane.
JPanel innerViewPanel = new JPanel(new BorderLayout());
innerViewPanel.add(buttonPanel, BorderLayout.PAGE_START);
JScrollPane scrollPane = new JScrollPane(innerViewPanel);
scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
// holds textfield and button for adding new radiobuttons
JPanel topPanel = new JPanel();
topPanel.add(radioBtnNameField);
Action addRBtnAction = new AddRadioBtnAction("Add Radio Button");
topPanel.add(new JButton(addRBtnAction));
radioBtnNameField.setAction(addRBtnAction);
// holds button to display selected radiobuttons
JPanel bottomPanel = new JPanel();
bottomPanel.add(new JButton(new PrintAllSelectedBtnAction("Print All Selected Buttons")));
setLayout(new BorderLayout());
add(scrollPane, BorderLayout.CENTER);
add(topPanel, BorderLayout.PAGE_START);
add(bottomPanel, BorderLayout.PAGE_END);
}
@Override
public Dimension getPreferredSize() {
if (isPreferredSizeSet()) {
return super.getPreferredSize();
}
return new Dimension(PREF_W, PREF_H);
}
// I prefer to use AbstractAction in place of ActionListeners since
// they have a little more flexibility and power.
private class AddRadioBtnAction extends AbstractAction {
public AddRadioBtnAction(String name) {
super(name);
int mnemonic = (int) name.charAt(0);
putValue(MNEMONIC_KEY, mnemonic);
}
@Override
public void actionPerformed(ActionEvent evt) {
String text = radioBtnNameField.getText();
JRadioButton rbtn = new JRadioButton(text);
radioButtonList.add(rbtn);
buttonPanel.add(rbtn);
buttonPanel.revalidate();
buttonPanel.repaint();
radioBtnNameField.selectAll();
}
}
private class PrintAllSelectedBtnAction extends AbstractAction {
public PrintAllSelectedBtnAction(String name) {
super(name);
int mnemonic = (int) name.charAt(0);
putValue(MNEMONIC_KEY, mnemonic);
}
@Override
public void actionPerformed(ActionEvent e) {
for (JRadioButton radioBtn : radioButtonList) {
if (radioBtn.isSelected()) {
System.out.println(radioBtn.getActionCommand() + " is selected");
}
}
System.out.println();
}
}
private static void createAndShowGui() {
AddRadioButtons mainPanel = new AddRadioButtons();
JFrame frame = new JFrame("Add Radio Buttons");
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.getContentPane().add(mainPanel);
frame.pack();
frame.setLocationByPlatform(true);
frame.setVisible(true);
}
public static void main(String[] args) {
// run the Swing code in a thread-safe manner
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGui();
}
});
}
}
关于java - 当用户添加更多项目时创建 JradioButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32386868/
SQLite、Content provider 和 Shared Preference 之间的所有已知区别。 但我想知道什么时候需要根据情况使用 SQLite 或 Content Provider 或
警告:我正在使用一个我无法完全控制的后端,所以我正在努力解决 Backbone 中的一些注意事项,这些注意事项可能在其他地方更好地解决......不幸的是,我别无选择,只能在这里处理它们! 所以,我的
我一整天都在挣扎。我的预输入搜索表达式与远程 json 数据完美配合。但是当我尝试使用相同的 json 数据作为预取数据时,建议为空。点击第一个标志后,我收到预定义消息“无法找到任何内容...”,结果
我正在制作一个模拟 NHL 选秀彩票的程序,其中屏幕右侧应该有一个 JTextField,并且在左侧绘制弹跳的选秀球。我创建了一个名为 Ball 的类,它实现了 Runnable,并在我的主 Draf
这个问题已经有答案了: How can I calculate a time span in Java and format the output? (18 个回答) 已关闭 9 年前。 这是我的代码
我有一个 ASP.NET Web API 应用程序在我的本地 IIS 实例上运行。 Web 应用程序配置有 CORS。我调用的 Web API 方法类似于: [POST("/API/{foo}/{ba
我将用户输入的时间和日期作为: DatePicker dp = (DatePicker) findViewById(R.id.datePicker); TimePicker tp = (TimePic
放宽“邻居”的标准是否足够,或者是否有其他标准行动可以采取? 最佳答案 如果所有相邻解决方案都是 Tabu,则听起来您的 Tabu 列表的大小太长或您的释放策略太严格。一个好的 Tabu 列表长度是
我正在阅读来自 cppreference 的代码示例: #include #include #include #include template void print_queue(T& q)
我快疯了,我试图理解工具提示的行为,但没有成功。 1. 第一个问题是当我尝试通过插件(按钮 1)在点击事件中使用它时 -> 如果您转到 Fiddle,您会在“内容”内看到该函数' 每次点击都会调用该属
我在功能组件中有以下代码: const [ folder, setFolder ] = useState([]); const folderData = useContext(FolderContex
我在使用预签名网址和 AFNetworking 3.0 从 S3 获取图像时遇到问题。我可以使用 NSMutableURLRequest 和 NSURLSession 获取图像,但是当我使用 AFHT
我正在使用 Oracle ojdbc 12 和 Java 8 处理 Oracle UCP 管理器的问题。当 UCP 池启动失败时,我希望关闭它创建的连接。 当池初始化期间遇到 ORA-02391:超过
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve
引用这个plunker: https://plnkr.co/edit/GWsbdDWVvBYNMqyxzlLY?p=preview 我在 styles.css 文件和 src/app.ts 文件中指定
为什么我的条形这么细?我尝试将宽度设置为 1,它们变得非常厚。我不知道还能尝试什么。默认厚度为 0.8,这是应该的样子吗? import matplotlib.pyplot as plt import
当我编写时,查询按预期执行: SELECT id, day2.count - day1.count AS diff FROM day1 NATURAL JOIN day2; 但我真正想要的是右连接。当
我有以下时间数据: 0 08/01/16 13:07:46,335437 1 18/02/16 08:40:40,565575 2 14/01/16 22:2
一些背景知识 -我的 NodeJS 服务器在端口 3001 上运行,我的 React 应用程序在端口 3000 上运行。我在 React 应用程序 package.json 中设置了一个代理来代理对端
我面临着一个愚蠢的问题。我试图在我的 Angular 应用程序中延迟加载我的图像,我已经尝试过这个2: 但是他们都设置了 src attr 而不是 data-src,我在这里遗漏了什么吗?保留 d
我是一名优秀的程序员,十分优秀!