- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在java中创建一个提醒程序,这个程序会根据用户输入调用另外3个JFrame我成功运行了 3 个 JFrame,但是当我想禁用/关闭计时器时,只有第一个计时器(SHORT BREAK)关闭,其他两个仍在运行()
1.这是处理每个 JFrame 的代码,如您所见,我使用了 3 个不同的方法来调用 3 个不同的 JFrame,但只有第一个方法在我键入 timer.close() 时关闭;
private void callShortBreak(){
System.out.println("Start SHORT BREAK...");
timer = new Timer(systemTime.getShortBreakTime(), new ActionListener() {
public void actionPerformed(ActionEvent e) {
/*if(chckbxTakeAShort.isSelected()){*/
/*Notification_Short_Break notif_short = new Notification_Short_Break();
notif_short.runNotification();*/
System.out.println("SHORT BREAK-"+loopShortBreak+" : "+ systemTime.getShortBreakTime() +" milisecond");
loopShortBreak++;
/*} */
}
});
timer.setRepeats(true);
timer.start();
}
private void callLongBreak(){
System.out.println("Start LONG BREAK...");
timer = new Timer(systemTime.getLongBreakTime(), new ActionListener() {
public void actionPerformed(ActionEvent e) {
/*if(chckbxTakeALong.isSelected()){*/
/* Notification_Long_Break notif_long = new Notification_Long_Break();
notif_long.runNotification(systemTime.getLongBreakDuration());*/
System.out.println("LONG BREAK-"+loopLongBreak+" : "+ systemTime.getLongBreakTime() +" milisecond");
loopLongBreak++;
/*} */
}
});
timer.setRepeats(true);
timer.start();
}
private void callLongBreakNotify(){
System.out.println("Start Notification LONG BREAK");
timer = new Timer(systemTime.getLongBreakTime()-systemTime.getLongBreakNotifyTime(), new ActionListener() {
public void actionPerformed(ActionEvent e) {
/*if(chckbxNotifiyLongBreak.isSelected()){*/
/*Notification_Before_Long_Break notif_before_long = new Notification_Before_Long_Break();
notif_before_long.runNotification();*/
System.out.println("NOTIFICATION LONG BREAK-"+loopLongBreakNotification+" : "+ (systemTime.getLongBreakTime()-systemTime.getLongBreakNotifyTime()) +" milisecond");
loopLongBreakNotification++;
/*}*/
}
});
timer.setRepeats(true);
timer.start();
}
2.这是调用上面代码的代码
public void timeSettings(){
if(chckbxTakeALong.isSelected()){
systemTime.setLongBreakTime(cbLongBreak.getSelectedIndex());
systemTime.setLongBreakDuration(cbLongBreakDuration.getSelectedIndex());
callLongBreak();
}
if(chckbxNotifiyLongBreak.isSelected() && chckbxTakeALong.isSelected()){
systemTime.setLongBreakNotifyTime(cbNotifyLongBreak.getSelectedIndex());
callLongBreakNotify();
}
if(chckbxTakeAShort.isSelected()){
systemTime.setShortBreakTime(cbShortBreak.getSelectedIndex());
callShortBreak();
}
}
3.这是关闭计时器的按钮
final JButton btnSaveAndClose = new JButton("Save and Close");
btnSaveAndClose.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
try{
System.out.println("Stop all Timer.....");
timer.stop();
}catch(Exception ex){
}
settings_Page.timeSettings();
saveCurrentSettings();
settings_Page.dispose();
}
});
btnSaveAndClose.setBounds(98, 331, 138, 23);
getContentPane().add(btnSaveAndClose);
4.这是完整的Settings_Page类
import java.awt.AWTException;
import java.awt.Composite;
import javax.swing.JFrame;
import java.awt.GridLayout;
import javax.swing.JButton;
import javax.swing.JOptionPane;
import javax.swing.JTabbedPane;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.JCheckBox;
import javax.swing.Timer;
import java.awt.Button;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.awt.event.KeyEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.event.WindowStateListener;
import javax.swing.JSpinner;
import javax.swing.JComboBox;
import javax.swing.JLabel;
import javax.swing.ImageIcon;
import javax.swing.event.ChangeListener;
import javax.swing.event.ChangeEvent;
import com.eyecare.controller.Time;
import com.eyecare.controller.SystemPreferences;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import javax.swing.JMenuBar;
import java.awt.Toolkit;
import java.awt.Color;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.MouseMotionAdapter;
public class Settings_Page extends JFrame{
private final String ENABLE_LONG_BREAK= "enableLongBreak";
private final String NOTIFY_LONG_BREAK="notifyLongBreak";
private final String ENABLE_SHORT_BREAK="enableShortBreak";
public final String ENABLE_SOUND="enableSound";
private final String ENABLE_STRICT_MODE="enableStrictMode";
private final String HAVE_WINDOW_NEARBY="haveWindowNearby";
private final String CB_LONG_BREAK = "cbLongBreak";
private final String CB_LONG_BREAK_DURATION = "cbLongBreakDuration";
private final String CB_NOTIFY_LONG_BREAK = "cbNotifyLongBreak";
private final String CB_SHORT_BREAK="cbShortBreak";
private final Boolean ENABLE_LONG_BREAK_VALUE = false;
private final Boolean NOTIFY_LONG_BREAK_VALUE = false;
private final Boolean ENABLE_SHORT_BREAK_VALUE = false;
public final Boolean ENABLE_SOUND_VALUE = false;
private final Boolean ENABLE_STRICT_MODE_VALUE = false;
private final Boolean HAVE_WINDOW_NEARBY_VALUE = false;
private final int CB_LONG_BREAK_VALUE = 0;
private final int CB_LONG_BREAK_DURATION_VALUE = 0;
private final int CB_NOTIFY_LONG_BREAK_VALUE = 0;
private final int CB_SHORT_BREAK_VALUE =0;
String[] comboBoxLongBreakContent = {"30 minutes","40 minutes","50 minutes","60 minutes","90 minutes","5 second","10 second"};
String[] comboBoxTimeOffContent = {"2 minutes", "3 minutes","4 minutes","5 minutes","7 minutes","5 second"};
String[] comboBoxNotifyContent = {"30 second","1 minutes","2 minutes","3 minutes","5 minutes","5 second"};
String[] comboBoxShortBreakContent = {"3 minutes","5 minutes","8 minutes","10 minutes","15 minutes","5 second","10 second"};
SystemPreferences sPreference = new SystemPreferences();
static Settings_Page settings_Page = new Settings_Page();
Timer timerShortBreak, timerLongBreak, timerNotifyLongBreak, timer;
Time systemTime = new Time();
TraySystem traySystem = new TraySystem();
JCheckBox chckbxTakeALong, chckbxNotifiyLongBreak,chckbxTakeAShort,chckbxStrictMode,chckbxEnableSounds,chckbxIHaveA;
JComboBox cbLongBreak, cbLongBreakDuration, cbNotifyLongBreak,cbShortBreak;
int xMouse;
int yMouse;
private JLabel lblBackground;
private JLabel lblDragJFrame;
private JLabel lblNewLabel_2;
private JLabel lblNewLabel_3;
/*nanti di hapus yaa*/
int loopShortBreak, loopLongBreak, loopLongBreakNotification;
boolean isThisClassAlreadyRun =false;
public Settings_Page() {
setIconImage(Toolkit.getDefaultToolkit().getImage(Settings_Page.class.getResource("/images/icons/Cika_ChibiIcon.png")));
setResizable(false);
setTitle("CiKare");
getContentPane().setLayout(null);
setUndecorated(true);
/*JCheckBox starts here*/
JLabel lblButtonExit = new JLabel("");
lblButtonExit.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
settings_Page.dispose();
}
});
lblButtonExit.setBounds(455, 6, 19, 19);
lblButtonExit.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR));
getContentPane().add(lblButtonExit);
JLabel lblButtonMinimize = new JLabel("");
lblButtonMinimize.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
setState(Settings_Page.ICONIFIED);
}
});
lblButtonMinimize.setBounds(425, 6, 19, 19);
lblButtonMinimize.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR));
getContentPane().add(lblButtonMinimize);
lblDragJFrame = new JLabel("");
lblDragJFrame.addMouseListener(new MouseAdapter() {
@Override
public void mousePressed(MouseEvent e) {
xMouse = e.getX();
yMouse = e.getY();
}
});
lblDragJFrame.addMouseMotionListener(new MouseMotionAdapter() {
@Override
public void mouseDragged(MouseEvent e) {
int x = e.getXOnScreen();
int y = e.getYOnScreen();
setLocation(x - xMouse, y - yMouse);
}
});
lblDragJFrame.setBounds(0, 0, 481, 25);
getContentPane().add(lblDragJFrame);
chckbxTakeALong = new JCheckBox("Take a long break every");
chckbxTakeALong.setOpaque(false);
chckbxTakeALong.setBounds(44, 58, 161, 23);
getContentPane().add(chckbxTakeALong);
chckbxNotifiyLongBreak = new JCheckBox("Notifiy long break coming before ");
chckbxNotifiyLongBreak.setOpaque(false);
chckbxNotifiyLongBreak.setBounds(44, 95, 213, 23);
getContentPane().add(chckbxNotifiyLongBreak);
chckbxTakeAShort = new JCheckBox("Take a short break every");
chckbxTakeAShort.setOpaque(false);
chckbxTakeAShort.setBounds(44, 131, 171, 23);
getContentPane().add(chckbxTakeAShort);
chckbxStrictMode = new JCheckBox("Enable strict mode");
chckbxStrictMode.setOpaque(false);
chckbxStrictMode.setBounds(44, 204, 147, 23);
getContentPane().add(chckbxStrictMode);
chckbxEnableSounds = new JCheckBox("Enable sounds");
chckbxEnableSounds.setOpaque(false);
chckbxEnableSounds.setBounds(44, 168, 147, 23);
getContentPane().add(chckbxEnableSounds);
chckbxIHaveA = new JCheckBox("I have a window nearby");
chckbxIHaveA.setOpaque(false);
chckbxIHaveA.setBounds(44, 245, 161, 23);
getContentPane().add(chckbxIHaveA);
/*Jcheckbox ends here*/
JLabel lblFor = new JLabel("for");
lblFor.setBounds(321, 62, 20, 14);
getContentPane().add(lblFor);
JLabel lblNewLabel = new JLabel("New label");
lblNewLabel.setIcon(new ImageIcon(Settings_Page.class.getResource("/images/icons/alarm.png")));
lblNewLabel.setBounds(10, 51, 28, 36);
getContentPane().add(lblNewLabel);
JLabel label = new JLabel("");
label.setIcon(new ImageIcon(Settings_Page.class.getResource("/images/icons/chat.png")));
label.setBounds(9, 88, 28, 36);
getContentPane().add(label);
JLabel lblNewLabel_1 = new JLabel("New label");
lblNewLabel_1.setIcon(new ImageIcon(Settings_Page.class.getResource("/images/icons/alarm.png")));
lblNewLabel_1.setBounds(10, 124, 28, 36);
getContentPane().add(lblNewLabel_1);
JLabel label_1 = new JLabel("");
label_1.setIcon(new ImageIcon(Settings_Page.class.getResource("/images/icons/sound.png")));
label_1.setBounds(10, 165, 28, 36);
getContentPane().add(label_1);
/*Jcombobox start here*/
cbLongBreak = new JComboBox(comboBoxLongBreakContent);
cbLongBreak.setBounds(211, 59, 96, 20);
getContentPane().add(cbLongBreak);
cbLongBreakDuration = new JComboBox(comboBoxTimeOffContent);
cbLongBreakDuration.setBounds(351, 59, 96, 20);
getContentPane().add(cbLongBreakDuration);
cbNotifyLongBreak = new JComboBox(comboBoxNotifyContent);
cbNotifyLongBreak.setBounds(274, 96, 96, 20);
getContentPane().add(cbNotifyLongBreak);
cbShortBreak = new JComboBox(comboBoxShortBreakContent);
cbShortBreak.setBounds(221, 132, 96, 20);
getContentPane().add(cbShortBreak);
/*Jcombobox ends hre*/
final JButton btnTryShortBreak = new JButton("Try short break");
btnTryShortBreak.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Notification_Short_Break notif_short = new Notification_Short_Break();
notif_short.runNotification();
}
});
btnTryShortBreak.setBounds(10, 295, 138, 23);
getContentPane().add(btnTryShortBreak);
final JButton btnTryLongBreak = new JButton("Try long break");
btnTryLongBreak.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Notification_Long_Break notif_long = new Notification_Long_Break();
notif_long.runNotification();
}
});
btnTryLongBreak.setBounds(169, 295, 138, 23);
getContentPane().add(btnTryLongBreak);
final JButton btnSaveAndClose = new JButton("Save and Close");
btnSaveAndClose.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
try{
System.out.println("Stop all Timer.....");
timer.stop();
}catch(Exception ex){
}
settings_Page.timeSettings();
saveCurrentSettings();
settings_Page.dispose();
}
});
btnSaveAndClose.setBounds(98, 331, 138, 23);
getContentPane().add(btnSaveAndClose);
lblNewLabel_2 = new JLabel("");
lblNewLabel_2.setIcon(new ImageIcon(Settings_Page.class.getResource("/images/icons/eye_close.png")));
lblNewLabel_2.setBounds(6, 202, 38, 30);
getContentPane().add(lblNewLabel_2);
lblNewLabel_3 = new JLabel("");
lblNewLabel_3.setIcon(new ImageIcon(Settings_Page.class.getResource("/images/icons/window.png")));
lblNewLabel_3.setBounds(9, 238, 38, 35);
getContentPane().add(lblNewLabel_3);
lblBackground = new JLabel("");
lblBackground.setIcon(new ImageIcon(Settings_Page.class.getResource("/images/icons/Background_settings_page.png")));
lblBackground.setBounds(0, 0, 481, 389);
getContentPane().add(lblBackground);
}
private void callShortBreak(){
System.out.println("Start SHORT BREAK...");
timer = new Timer(systemTime.getShortBreakTime(), new ActionListener() {
public void actionPerformed(ActionEvent e) {
/*if(chckbxTakeAShort.isSelected()){*/
/*Notification_Short_Break notif_short = new Notification_Short_Break();
notif_short.runNotification();*/
System.out.println("SHORT BREAK-"+loopShortBreak+" : "+ systemTime.getShortBreakTime() +" milisecond");
loopShortBreak++;
/*} */
}
});
timer.setRepeats(true);
timer.start();
}
private void callLongBreak(){
System.out.println("Start LONG BREAK...");
timer = new Timer(systemTime.getLongBreakTime(), new ActionListener() {
public void actionPerformed(ActionEvent e) {
/*if(chckbxTakeALong.isSelected()){*/
/* Notification_Long_Break notif_long = new Notification_Long_Break();
notif_long.runNotification(systemTime.getLongBreakDuration());*/
System.out.println("LONG BREAK-"+loopLongBreak+" : "+ systemTime.getLongBreakTime() +" milisecond");
loopLongBreak++;
/*} */
}
});
timer.setRepeats(true);
timer.start();
}
private void callLongBreakNotify(){
System.out.println("Start Notification LONG BREAK");
timer = new Timer(systemTime.getLongBreakTime()-systemTime.getLongBreakNotifyTime(), new ActionListener() {
public void actionPerformed(ActionEvent e) {
/*if(chckbxNotifiyLongBreak.isSelected()){*/
/*Notification_Before_Long_Break notif_before_long = new Notification_Before_Long_Break();
notif_before_long.runNotification();*/
System.out.println("NOTIFICATION LONG BREAK-"+loopLongBreakNotification+" : "+ (systemTime.getLongBreakTime()-systemTime.getLongBreakNotifyTime()) +" milisecond");
loopLongBreakNotification++;
/*}*/
}
});
timer.setRepeats(true);
timer.start();
}
public void timeSettings(){
if(chckbxTakeALong.isSelected()){
systemTime.setLongBreakTime(cbLongBreak.getSelectedIndex());
systemTime.setLongBreakDuration(cbLongBreakDuration.getSelectedIndex());
callLongBreak();
}
if(chckbxNotifiyLongBreak.isSelected() && chckbxTakeALong.isSelected()){
systemTime.setLongBreakNotifyTime(cbNotifyLongBreak.getSelectedIndex());
callLongBreakNotify();
}
if(chckbxTakeAShort.isSelected()){
systemTime.setShortBreakTime(cbShortBreak.getSelectedIndex());
callShortBreak();
}
if(chckbxEnableSounds.isSelected()){
}
if(chckbxStrictMode.isSelected()){
}
if(chckbxIHaveA.isSelected()){
}
}
private void saveCurrentSettings(){
sPreference.setBooleanSystemPreferences(ENABLE_LONG_BREAK, chckbxTakeALong.isSelected());
sPreference.setBooleanSystemPreferences(NOTIFY_LONG_BREAK, chckbxNotifiyLongBreak.isSelected());
sPreference.setBooleanSystemPreferences(ENABLE_SHORT_BREAK, chckbxTakeAShort.isSelected());
sPreference.setBooleanSystemPreferences(ENABLE_STRICT_MODE, chckbxStrictMode.isSelected());
sPreference.setBooleanSystemPreferences(ENABLE_SOUND, chckbxEnableSounds.isSelected());
sPreference.setBooleanSystemPreferences(HAVE_WINDOW_NEARBY, chckbxIHaveA.isSelected());
sPreference.setIntSystemPreferences(CB_LONG_BREAK, cbLongBreak.getSelectedIndex());
sPreference.setIntSystemPreferences(CB_LONG_BREAK_DURATION, cbLongBreakDuration.getSelectedIndex());
sPreference.setIntSystemPreferences(CB_NOTIFY_LONG_BREAK, cbNotifyLongBreak.getSelectedIndex());
sPreference.setIntSystemPreferences(CB_SHORT_BREAK, cbShortBreak.getSelectedIndex());
systemTime.setLongBreakTime(cbLongBreak.getSelectedIndex());
systemTime.setLongBreakDuration(cbLongBreakDuration.getSelectedIndex());
systemTime.setLongBreakNotifyTime(cbNotifyLongBreak.getSelectedIndex());
systemTime.setShortBreakTime(cbShortBreak.getSelectedIndex());
}
private void loadCurrentSettings(){
chckbxTakeALong.setSelected(sPreference.getBooleanSystemPreferences(ENABLE_LONG_BREAK, ENABLE_LONG_BREAK_VALUE));
chckbxNotifiyLongBreak.setSelected(sPreference.getBooleanSystemPreferences(NOTIFY_LONG_BREAK, NOTIFY_LONG_BREAK_VALUE ));
chckbxTakeAShort.setSelected(sPreference.getBooleanSystemPreferences(ENABLE_SHORT_BREAK, ENABLE_SHORT_BREAK_VALUE));
chckbxStrictMode.setSelected(sPreference.getBooleanSystemPreferences(ENABLE_STRICT_MODE, ENABLE_STRICT_MODE_VALUE));
chckbxEnableSounds.setSelected(sPreference.getBooleanSystemPreferences(ENABLE_SOUND, ENABLE_SOUND_VALUE));
chckbxIHaveA.setSelected(sPreference.getBooleanSystemPreferences(HAVE_WINDOW_NEARBY, HAVE_WINDOW_NEARBY_VALUE));
cbLongBreak.setSelectedIndex(sPreference.getIntSytemPreferences(CB_LONG_BREAK, CB_LONG_BREAK_VALUE));
cbLongBreakDuration.setSelectedIndex(sPreference.getIntSytemPreferences(CB_LONG_BREAK_DURATION, CB_LONG_BREAK_DURATION_VALUE));
cbNotifyLongBreak.setSelectedIndex(sPreference.getIntSytemPreferences(CB_NOTIFY_LONG_BREAK, CB_NOTIFY_LONG_BREAK_VALUE));
cbShortBreak.setSelectedIndex(sPreference.getIntSytemPreferences(CB_SHORT_BREAK, CB_SHORT_BREAK_VALUE));
}
/*if you want call from another activity use this*/
public void runSettingsPage(){
settings_Page.setDefaultCloseOperation(JFrame.ICONIFIED);
settings_Page.setSize(481,386);
settings_Page.setVisible(true);
settings_Page.loadCurrentSettings();
if(isThisClassAlreadyRun!=true){
settings_Page.timeSettings();
isThisClassAlreadyRun=true;
}
}
public static void main(String [] args){
settings_Page.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
settings_Page.setSize(481,386);
settings_Page.setVisible(true);
settings_Page.loadCurrentSettings();
if(isThisClassAlreadyRun!=true){
settings_Page.timeSettings();
isThisClassAlreadyRun=true;
}
}
}
最佳答案
每个计时器需要 3 个字段(不只是一个计时器)因此,当您创建第二个时,对第一个的引用将丢失。
定义例如
Timer shortBreakTimer;
Timer longBreakTimer;
Timer anotherBreakTimer;
并在关闭时停止所有 3 个实例
关于java - 如何停止 2 javax.swing.Timer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27286997/
我正在开发一个摆动程序以显示多张图片。并且可以旋转图片(每个图片都以JComponent实现)。 问题是,当图片旋转时,JComponent的边框不会改变,因此图片会被剪切。 有什么办法也可以旋转边框
我有一个 JPanel 和一个 JButton 向量,我想将每个按钮添加到面板。 我遇到的问题是我有一个代表按钮向量的变量 btns,但宏函数只是将它视为一个符号,而不是一个向量。有没有办法以某种方式
我有一个 swing 应用程序,它覆盖 javax.swing.text.Document 以将基础文档的内容限制为某些字符和文本长度。我想将我的应用程序移植到 Javafx,但我不知道此类是否有 J
我有一个带有面板的简单应用程序,我想在单击它时暂停并重新开始绘画。 object ModulusPatterns extends SimpleSwingApplication { var dela
我似乎无法在 Swing 中强制布局。我有一个 JComponent添加到 JLayeredPane我在 JComponent 上设置了边框.然后,我想立即重新绘制所有内容 - 而不是像 invali
我有一个 Swing 应用程序,我想通过将外部文件从 Windows 资源管理器拖到应用程序上来导入外部文件。我有这个基本功能工作。但是,我想将默认的拖放光标图标更改为应用程序适当的光标。当鼠标键被按
我想在我的 Scala 摆动应用程序中使用一棵树,但该组件在 API 中不可用。 是否包装了 JTree存在吗? 如果没有,你对制作有什么建议吗? 谢谢 最佳答案 即使您可以在 Scala 程序中直接
我目前正在努力使我的 Swing 应用程序看起来更好。我想在这些方面实现一些目标: 这个想法是让每个框都有一个漂亮的标题,背景类似于上图。使用基本的 Swing 组件,我能得到的最接近的东西是添加 T
这是我在 Scala 中使用 Swing 的第一次实验,并且对下面的代码有一些疑问。它所做的只是生成一个带有可改变颜色的彩色矩形的窗口。请随时回答一个或任何一个问题。 1) 我在下面使用了 Java
一个愚蠢的问题,但我真的无法让它起作用:我在 Swing 应用程序中有一些长时间运行的过程,可能需要几分钟。我想在此过程进行时向用户显示进度对话框。我还想阻止用户执行进一步的操作,例如在进程进行时按下
如何获取秋千组件的默认背景色?我的意思是JPanel的默认背景色? 最佳答案 要获取创建面板时将使用的 DEFAULT 颜色,请使用: Color color = UIManager.getColor
我想更改特定表头的背景颜色。在我的应用程序中,我必须将当前月份的标题颜色设置为红色。 我的代码在这里:: jTable1.getTableHeader(). setDefaultRe
我正在努力使在 Java3D Canvas 上显示 Java Swing 组件并与之交互成为可能。我通过将透明 JPanel 绘制到缓冲图像来显示组件,然后使用 J3DGraphics2D 在 Can
嗨 当我在 swing 中创建按钮时,它会在文本周围添加边框,从而使按钮变大一点。 现在,我确实需要那个屏幕空间,我通常做的是创建一个文本项(禁用),它创建更小的组件大小(文本周围更小的空间)并向其添
有scala.swing.BoxPanel,但它似乎没有捕获重点,因为没有与javax.swing.Box工厂方法createHorizontalStrut等效的东西、createHorizo
我的 scala swing 应用程序中有一个 BoxPanel 按钮,这对我来说很难看,因为按钮的大小各不相同。我已将其更改为 GridPanel,但随后它们也垂直填充了面板,我发现这更难看。我怎样
我刚开始学习 Scala,作为学习过程的一部分,我一直在尝试使用 Swing 编写一些简单的脚本。 这是一个非常精简的例子,它展示了我所看到的问题。 SimpleSwingApp: import sc
我刚刚开始使用 clojure 和跷跷板制作 GUI 应用程序。它只创建一个 JFrame 和几个组件。这是代码。 main 函数除了调用 start-gui 什么也不做并在返回后立即退出。 (ns
Scala 是一种很棒的语言,但不幸的是缺少库文档。如何更改组件的初始大小?我什么都没有(故意),但无论如何都希望它是一定的。我目前有 ... contents = new BoxPanel(Orie
基本设置是这样的:我有一个垂直的 JSplitPane,我希望它有一个固定大小的底部组件和一个调整大小的顶部组件,我通过调用 setResizeWeight(1.0) 来完成。在此应用程序中,有一个按
我是一名优秀的程序员,十分优秀!