gpt4 book ai didi

java - JXDatePicker 使 JXMonthView 中的箭头变大

转载 作者:行者123 更新时间:2023-11-30 11:13:04 30 4
gpt4 key购买 nike

我想在可在触摸屏上运行的应用程序中使用这个 JXDatePicker 组件。因为默认组件很小,所有的日期和按钮都很难用一个坏的触摸屏来点击我想让它们更大。到目前为止,我成功地使结果文本字段更大(显示所选日期的那个,通过更改字体),使弹出窗口更大(JXMonthView,也通过更改其字体),将 JXDatePicker 的图片更改为更大图片,将默认日期设置为当前日期,设置日期格式等。这是我的代码:

private void touch_screen_datepicker(JXDatePicker date_picker) {
Toolkit toolkit = Toolkit.getDefaultToolkit();
JXMonthView monthView = date_picker.getMonthView();
date_picker.setDate(new Date());
date_picker.setFont(new Font(Font.DIALOG, Font.PLAIN, 50));
JButton btn_pick = (JButton) date_picker.getComponent(1);
btn_pick.setBackground(new Color(66, 147, 223));
Image image = toolkit.getImage("/home/adrrian/Image/calendar/" + "calendar image 4.png"); //Земање на сликата за мк знаме
ImageIcon icon = new ImageIcon(image); //Правење на икона
btn_pick.setIcon(icon); //Поставување на иконата
SimpleDateFormat longFormat = new SimpleDateFormat("yyyy-MM-dd");
SimpleDateFormat shortFormat = new SimpleDateFormat("yy-MM-dd");
Date startDate = new Date(0);//01.01.1970
shortFormat.set2DigitYearStart(startDate);
DatePickerFormatter formatter = new DatePickerFormatter(
// invers sequence for parsing to satisfy the year parsing rules
new DateFormat[]{shortFormat, longFormat}) {

@Override
public String valueToString(Object value) throws ParseException {
if (value == null) {
return null;
}
return getFormats()[1].format(value);
}
};
DefaultFormatterFactory factory = new DefaultFormatterFactory(formatter);
date_picker.getEditor().setFormatterFactory(factory);
monthView.setFont(new Font(Font.DIALOG, Font.PLAIN, 50));
monthView.setFirstDayOfWeek(Calendar.MONDAY);
}

这是我最终作品的图片: enter image description here

我的主要问题是如何制作改变月份的箭头(例如,如果我从这张图片返回到显示九月)。我尝试列出所有组件,就像我为按钮所做的那样,但我仍然没有找到任何东西。同样为了更好的 GUI,我喜欢找到深蓝色(显示月份的地方),以使我的按钮相同。

希望有人能帮助我。提前致谢。

    Toolkit toolkit = Toolkit.getDefaultToolkit();
JXMonthView monthView = date_picker.getMonthView();
/*EDITED*/
//1
date_picker.putClientProperty("JComponent.sizeVariant", "large");
monthView.putClientProperty("JComponent.sizeVariant", "large");
//2
date_picker.putClientProperty("JXComponent.sizeVariant", "large");
monthView.putClientProperty("JXComponent.sizeVariant", "large");
//3
date_picker.putClientProperty("JXDatePicker.sizeVariant", "large");
monthView.putClientProperty("JXMonthView.sizeVariant", "large");
//
date_picker.putClientProperty("JDatePicker.sizeVariant", "large");
monthView.putClientProperty("JMonthView.sizeVariant", "large");
SwingUtilities.updateComponentTreeUI(this);
SwingUtilities.updateComponentTreeUI(date_picker);
SwingUtilities.updateComponentTreeUI(monthView);

date_picker.updateUI();
monthView.updateUI();
/*EDITED*/

正如@Vighanesh Gursale 建议的那样,我在 setVisible(true) 之前插入了这行代码并执行了 frame.pack(),但没有任何变化。

最佳答案

我已经使用 nimbus 外观制作了一些代码,我知道这并不完全符合您的要求,但它非常有用。检查此代码。要执行相同的操作,您需要找到下一个和上一个按钮的键,在我的例子中是 Button.margin。如果幸运的话,请尝试在您的代码中使用相同的 key 。

import javax.swing.*;
import java.awt.*;

public class Demo {

JFrame frame = new JFrame("");
JButton btn = new JButton("Example");

public Demo() {
frame.setSize(400, 400);
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new FlowLayout());
frame.add(btn);
frame.setVisible(true);
}

public static void main(String[] args) {
try
{
UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
Insets insets = new Insets(50, 20, 50, 20); //change the size of button
UIManager.put("Button.margin", insets);
}
catch(Exception e)
{
e.printStackTrace();
}
Demo d = new Demo();
}
}

另请记住使用默认外观或任何其他外观。

关于java - JXDatePicker 使 JXMonthView 中的箭头变大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26545887/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com