一个日期时间选择控件

一个日期时间选择控件
界面模仿windows系统的日期和时间属性卡片,使用方法仿照JColorChooser,在windowsXP L&F下效果最佳。下载位置在 http://www.blogjava.net/Files/kobe2000/JDateChooser.rar
使用方法如下:
import  kobe.util.JDateChooser;

import  javax.swing. * ;
import  java.util.Calendar;

public   class  Test  {
  
public static void main(String[] args) throws Exception {
    UIManager.setLookAndFeel(
"com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
    Calendar c 
= JDateChooser.showDialog(null"请选择日期"null);
    
if(c==null) JOptionPane.showMessageDialog(null"你没有选择时间");
    
else JOptionPane.showMessageDialog(null"你选择的时间是" + c.getTime());
  }

}

你可能感兴趣的:(一个日期时间选择控件)