📄 biderror.java
字号:
package investcompanyclient;import javax.swing.JButton;import javax.swing.JLabel;import javax.swing.WindowConstants;import javax.swing.SwingUtilities;/*** This code was edited or generated using CloudGarden's Jigloo* SWT/Swing GUI Builder, which is free for non-commercial* use. If Jigloo is being used commercially (ie, by a corporation,* company or business for any purpose whatever) then you* should purchase a license for each developer using Jigloo.* Please visit www.cloudgarden.com for details.* Use of Jigloo implies acceptance of these licensing terms.* A COMMERCIAL LICENSE HAS NOT BEEN PURCHASED FOR* THIS MACHINE, SO JIGLOO OR THIS CODE CANNOT BE USED* LEGALLY FOR ANY CORPORATE OR COMMERCIAL PURPOSE.*/public class biderror extends javax.swing.JFrame { private JLabel jLabel1; private JButton jButton1; /** * Auto-generated main method to display this JFrame *//* public static void main(String[] args) { SwingUtilities.invokeLater(new Runnable() { public void run() { biderror inst = new biderror(); inst.setLocationRelativeTo(null); inst.setVisible(true); } }); }*/ public biderror() { super(); initGUI(); } private void initGUI() { try { setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE); getContentPane().setLayout(null); this.setLocation(new java.awt.Point(25, 25)); { jLabel1 = new JLabel(); getContentPane().add(jLabel1); jLabel1.setText("ID or Code or Projectname has errors!"); jLabel1.setBounds(137, 70, 333, 79); jLabel1.setFont(new java.awt.Font("宋体",0,16)); } { jButton1 = new JButton(); getContentPane().add(jButton1); jButton1.setText("ok"); jButton1.setBounds(262, 173, 73, 22); } pack(); this.setSize(636, 300); } catch (Exception e) { e.printStackTrace(); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -