- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好的,我将发布这三个类的代码,因为它不太长。
package guiDemonstration;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
public class TabbedGUI {
//create fields
private JFrame frame;
private JTabbedPane tabbedPane;
//make the following three labels public for access in the GUIEngine class
private JLabel comboLabel;
private JLabel sliderLabel;
private JLabel radioLabel;
private JSlider slider;
private JComboBox combo;
private JPanel comboPanel, sliderPanel, radioPanel;
private String []comboArray;
private JRadioButton radio, radio1, radio2;
private ButtonGroup buttonGroup;
private String comboText = "Please Make a Choice";
private String sliderText = "Move the Slider";
private String radioText = "Choose a Radio Button";
//Create field to hold GUIEngine Class
GUIEngine engine;
// empty constructor
public TabbedGUI(){
}
//method used to construct the gui
private void makeFrame(){
//create the Frame
frame = new JFrame("Example of a Tabbed GUI");
//set the initial size of the frame in pixels
frame.setSize(500, 200);
//add the frame to the contentPane
Container contentPane = frame.getContentPane();
//create an instance of the GUIEngine class
engine = new GUIEngine();
//create an array of size 3 to be used as dropdown values in the combobox
comboArray = new String[3];
//initialise the array
comboArray[0] = "First Choice";
comboArray[1] = "Second Choice";
comboArray[2] = "Third Choice";
//create instance of JComboBox and add array
combo = new JComboBox(comboArray);
//create instance of JSlider
slider = new JSlider();
//creat instance of Button Group
// this ButtonGroup will hold the individual radio buttons
buttonGroup = new ButtonGroup();
radio = new JRadioButton();
radio1 = new JRadioButton();
radio2 = new JRadioButton();
//create instances of JPanel
comboPanel = new JPanel();
sliderPanel= new JPanel();
radioPanel = new JPanel();
//create flowlayout for comboPanel
comboPanel.setLayout(new FlowLayout());
//create instances of labels
comboLabel = new JLabel(comboText);
sliderLabel=new JLabel(sliderText);
radioLabel = new JLabel(radioText);
//add radio buttons to the group
buttonGroup.add(radio);
buttonGroup.add(radio1);
buttonGroup.add(radio2);
//add a border to the button group
//begin creation of the tabbed GUI and add to contentPane
tabbedPane = new JTabbedPane();
contentPane.add(tabbedPane);
frame.add(tabbedPane);
//add instances of JPanel to each tab
tabbedPane.addTab("Combo Box", comboPanel);
tabbedPane.addTab("Slider", sliderPanel);
tabbedPane.addTab("Radio", radioPanel);
//add components to each JPanel of each tab
comboPanel.add(combo);
comboPanel.add(comboLabel);
sliderPanel.add(sliderLabel);
radioPanel.add(radioLabel);
sliderPanel.add(slider);
radioPanel.add(radio);
radioPanel.add(radio1);
radioPanel.add(radio2);
//set a border around the Slider
slider.setBorder(
BorderFactory.createMatteBorder(1, 1, 1, 1, Color.BLUE));
// call the method to add the listeners to each component
addListeners();
//by default the frame is set to invisible. Set the frame to visible
frame.setVisible(true);
}
/**
* This method adds listeners to each component
*/
public void addListeners(){
//add actionListeners to each component
combo.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
engine.useCombo();
}
});
slider.addChangeListener(new ChangeListener(){
public void stateChanged(ChangeEvent e){
engine.useSlider();
}
});
radio.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
engine.useRadioButtons();
}
});
radio1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
engine.useRadioButtons();
}
});
radio2.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
engine.useRadioButtons();
}
});
}
/*
* The following three methods set the text for each
* label on the three individual tabs.
* These methods are called from the GUIEngine Class.
*/
//set the text on the comboLabel
public void setComboLabel(){
String updatedComboText = (String)combo.getSelectedItem();
comboLabel.setText(updatedComboText);
//System.out.println("You selected" + comboText);
}
//set the text on the sliderLabel
public void setSliderLabel(){
sliderLabel.setText("You've moved the slider!");
}
//set the text on the radioLabel
public void setRadioLabel(){
System.out.println("You've selected a radio button!");
}
/**
* This method is used to begin execution of the program
*/
public void runProgram(){
makeFrame();
}
}
第二类:
package guiDemonstration;
public class GUIEngine {
TabbedGUI tg;
//constructor
public GUIEngine(){
tg = new TabbedGUI();
}
public void useCombo(){
//System.out.println("You Used the Combo Box");
tg.setComboLabel();
}
public void useSlider(){
tg.setSliderLabel();
}
public void useRadioButtons(){
//System.out.println("You clicked a radio button");
tg.setRadioLabel();
}
}
还有主要方法:
package guiDemonstration;
public class Controller {
/**
* #This is the main method where program execution begins
* @param args
*/
public static void main(String[] args) {
TabbedGUI tg = new TabbedGUI();
tg.runProgram();
}
}
JCombobox 和 JSlider 会导致运行时错误。代码编译正常,但是当我移动 JSlider 或选择 JComboBox 上的项目时,程序崩溃。
有什么想法吗?
GF
最佳答案
您的 GUIEngine 正在创建自己的 TabbedGUI 实例,而不是使用您在 main 方法中创建的实例。
如果您需要保留 GUIEngine 类,我建议在 makeFrame 中执行此操作
engine = new GUIEngine(this);
然后更改 GUIEngine 构造函数以接受 TabbedGUI 作为参数。不妨也将实例变量设为最终变量。
关于Java Swing - JSlider 和 JCombobox 导致运行时错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2224920/
我已从使用 JFrame 的项目中复制代码以显示文本字段和 JSlider 我的新项目使用了JInternalFrame,并且只绘制了 slider 。如果我注释掉代码,它将绘制文本字段,似乎它只会绘
我正在测试一个使用 JSlider 调整圆宽度的程序,并且 slider 的值正在工作,但它实际上并没有改变“宽度”变量。请帮忙!!!这是我到目前为止所拥有的: public class Slider
我的 JSlider 第一个值为 0,最后一个值为 8850。我想设置主要刻度间距,以便打印最后一个值 (8850)。例如,如果我将主刻度间距设置为 550,则最后打印的值将为 8800。 最佳答案
我想在单击按钮时动态添加文本字段,但要获取的值和按钮位于一个类中,而我想要添加与其相邻的文本框和 slider 的面板位于不同的类中。代码是- public class TipSplitting ex
我第一次尝试使用JSlider,并尝试咨询How to Use Sliders学习基础知识。但是当我尝试使刻度线显示为这样时: sliderInterior = new JSlider(JSlide
此 jSlider 代码导致应用程序挂起。 private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { //
我正在学习如何使用 oracle tutorials 中的 JSlider 。我想用它来更改代码中变量的值,而不是更改动画的速度/fps。我注意到我在电脑游戏中看到的“每秒帧数”并阅读了 here 。
我正在为模拟创建一个简单的“播放/倒带”界面,其中的 JSlider 既可用作进度条,也可用作 slider ,您可以将模拟移动到模拟范围内的任何时间点。滑动到时间点效果很好,但是当模拟“播放”时,我
这是我更新 jslider 的代码 try{ name=(String) jList1.getSelectedValue(); CanvasVideoSurface video
这个问题已经有答案了: Update JLabel repeatedly with results of long running task (2 个回答) 已关闭 8 年前。 我有一个 Java S
我有一个 wav 音频文件。我知道如何在java中使用AudioImputStream来播放它。我学会了创建 jslider。现在我要使用 slider 作为带有音频的进度条,比如音频播放,那么 sl
我刚刚开始使用 java :)。 我的问题是: 我想用 JSlider 制作一个 GUI,然后 slider 移动,我希望 JTextField 中的数字发生变化。我尝试了很多东西,但总是出错。 如果
是否可以在 JSlider 上显示两组具有相同刻度的标签,一组在顶部,一组在底部? 最佳答案 您可以实现自己的SliderUI,如图here ,并覆盖 paintTicks()。 或者,您可能试图表示
我在 Java 中使用 JSlider 时遇到问题 我画了一个圆 A,我想在第一个圆 A 内放置另一个圆 B。我想将第二个圆 B 的中心放在与圆心相同的坐标处第一个圆 A,然后我想使用 JSlider
在实现 JSlider 的 ChangeListener 时,只要值发生变化就会触发该事件。我需要获取 JSLider 的最后一个值:我不需要 slider 访问的每个值,只需要用户释放 slider
我有一个带有附加 ChangeListerner 的简单 JSlider。这是代码: JSlider slider = new JSlider(); slider.setMinorTickSpacin
我有一个非常简单的 JFrame,其北面板中只有一个 JSlider。我希望通过以下方法以最小尺寸显示 JSlider。 slider.putClientProperty("JComponent.si
我想为我 parent 的 Estate Agency 假期出租在线预订服务创建一个 Java 应用程序。 不幸的是,我还不能发布图片,但他们想要一种 slider 式的预订服务,用户可以在其中滑动条
我编写了一个小程序作为初学者练习,使用两个 JSlider 将摄氏度转换为华氏度,反之亦然。我让两个 JSliders 互相监听,目标是每当我移动一个 slider 时,Celcius slider
这是我的代码的一部分,但它不起作用,因为它一直说在我的 ActionListener 中找不到该符号。我不知道如何让它发挥作用。 所以基本上我想做的是让 1-8.png 中的图像根据 slider 着
我是一名优秀的程序员,十分优秀!