📄 urgenceframe.java
字号:
/* * UrgenceFrame.java * * Created on 2008年11月6日, 下午7:59 */package com.ht.dsa;/** * * @author IBM */public class UrgenceFrame extends javax.swing.JFrame { /** Creates new form UrgenceFrame */ public UrgenceFrame() { initComponents(); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { urgencePanel = new com.ht.dsa.UrgencePanel(); setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); setTitle("电力系统紧急控制平台"); urgencePanel.setName("urgencePanel"); // NOI18N javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(urgencePanel, javax.swing.GroupLayout.DEFAULT_SIZE, 1219, Short.MAX_VALUE) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(urgencePanel, javax.swing.GroupLayout.DEFAULT_SIZE, 914, Short.MAX_VALUE) ); pack(); }// </editor-fold>//GEN-END:initComponents static UrgenceFrame frame = new UrgenceFrame(); /** * @param args the command line arguments */ public static void main(String args[]) { java.awt.EventQueue.invokeLater(new Runnable() { public void run() { frame.setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private com.ht.dsa.UrgencePanel urgencePanel; // End of variables declaration//GEN-END:variables}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -