帆软报表设计器源代码。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

51 lines
1.6 KiB

package com.fr.design.gui.demo;
import com.fr.design.layout.FRGUIPaneFactory;
import com.fr.design.utils.DesignUtils;
import com.fr.design.utils.gui.GUICoreUtils;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTabbedPane;
import javax.swing.SwingUtilities;
import javax.swing.WindowConstants;
import java.awt.BorderLayout;
/**
* Created by IntelliJ IDEA.
* User: Richer
* Date: 11-6-27
* Time: 下午4:54
*/
public class SwingComponentsDemo extends JFrame {
private SwingComponentsDemo() {
this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
init();
JPanel contentPane = (JPanel) getContentPane();
contentPane.setLayout(FRGUIPaneFactory.createBorderLayout());
JTabbedPane tab = new JTabbedPane();
contentPane.add(tab, BorderLayout.CENTER);
tab.addTab("下拉框", new ComboBoxDemo());
tab.addTab("多行提示", new MultiLineTooltipDemo());
tab.addTab("列表", new ListDemo());
tab.addTab("标签", new LabelDemo());
tab.addTab("加载耗时较多的面板", new LoadingPaneDemo());
}
private void init() {
DesignUtils.initLookAndFeel();
setTitle("设计器组件演示");
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
JFrame f = new SwingComponentsDemo();
f.setSize(500, 500);
f.setVisible(true);
GUICoreUtils.centerWindow(f);
}
});
}
}