diff options
author | alfred <alfred@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-08-11 03:22:44 +0000 |
---|---|---|
committer | alfred <alfred@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-08-11 03:22:44 +0000 |
commit | b48e3710a532f2e76411b11900bcd03122dfd36c (patch) | |
tree | 890583111b26e886490146bbe050095c907ef20d /Tools | |
parent | cfe26d0ed80630ae2e7a23806b44f4b5dfe17031 (diff) | |
download | edk2-platforms-b48e3710a532f2e76411b11900bcd03122dfd36c.tar.xz |
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1239 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/Source/MigrationTools/org/tianocore/migration/FirstPanel.java | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Tools/Source/MigrationTools/org/tianocore/migration/FirstPanel.java b/Tools/Source/MigrationTools/org/tianocore/migration/FirstPanel.java index 342c01c443..18c02996ea 100644 --- a/Tools/Source/MigrationTools/org/tianocore/migration/FirstPanel.java +++ b/Tools/Source/MigrationTools/org/tianocore/migration/FirstPanel.java @@ -124,8 +124,15 @@ public class FirstPanel extends JPanel implements ActionListener, UI { //---------------------------------------------------------------------------------------//
public static void init() throws Exception {
- JFrame.setDefaultLookAndFeelDecorated(true);
- JFrame frame = new JFrame("FrameDemo");
+
+ //UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
+ UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
+ //UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
+ //UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
+ //UIManager.setLookAndFeel("com.sun.java.swing.plaf.gtk.GTKLookAndFeel");
+ //UIManager.setLookAndFeel("com.sun.java.swing.plaf.motif.MotifLookAndFeel");
+
+ JFrame frame = new JFrame("MigrationTools");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
FirstPanel fp = new FirstPanel();
|