corbaapplication.java

来自「《Delphi开发人员指南》配书原码」· Java 代码 · 共 34 行

JAVA
34
字号
package CorbaServer;

import com.sun.java.swing.UIManager;

public class CorbaApplication {
  boolean packFrame = false;

  //Construct the application
  
  public CorbaApplication() {
    CorbaFrame frame = new CorbaFrame();
    //Validate frames that have preset sizes
    //Pack frames that have useful preferred size info, e.g. from their layout
    if (packFrame)
      frame.pack();
    else
      frame.validate();
    frame.setVisible(true);
  }
//Main method
  
  public static void main(String[] args) {
    try  {
      UIManager.setLookAndFeel(new com.sun.java.swing.plaf.windows.WindowsLookAndFeel());
      //UIManager.setLookAndFeel(new com.sun.java.swing.plaf.motif.MotifLookAndFeel());
      //UIManager.setLookAndFeel(new com.sun.java.swing.plaf.metal.MetalLookAndFeel());
    }
    catch (Exception e) {
    }
    new CorbaApplication();
  }
}

 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?