Advertisement
Wisnugroho28

About

Dec 11th, 2019
889
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.19 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package projectapp_javacloth;
  7.  
  8.  
  9.  
  10. /**
  11.  *
  12.  * @author FAWKES
  13.  */
  14. public class ABOUT extends javax.swing.JInternalFrame {
  15.  
  16.    
  17.    
  18.     /**
  19.      * Creates new form rockwell_what
  20.      */
  21.     public ABOUT() {
  22.         initComponents();
  23.        
  24.     }
  25.    
  26.    
  27.  
  28.     /**
  29.      * This method is called from within the constructor to initialize the form.
  30.      * WARNING: Do NOT modify this code. The content of this method is always
  31.      * regenerated by the Form Editor.
  32.      */
  33.     @SuppressWarnings("unchecked")
  34.     // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
  35.     private void initComponents() {
  36.  
  37.         jPanel1 = new javax.swing.JPanel();
  38.         jLabel1 = new javax.swing.JLabel();
  39.  
  40.         setClosable(true);
  41.         setIconifiable(true);
  42.         setMaximizable(true);
  43.         setResizable(true);
  44.         setTitle("ABOUT");
  45.  
  46.         jPanel1.setBackground(new java.awt.Color(0, 0, 51));
  47.  
  48.         jLabel1.setFont(new java.awt.Font("Steppes TT", 0, 48)); // NOI18N
  49.         jLabel1.setForeground(new java.awt.Color(204, 204, 204));
  50.         jLabel1.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
  51.         jLabel1.setText("CLOTH.INC V.1.0");
  52.  
  53.         javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
  54.         jPanel1.setLayout(jPanel1Layout);
  55.         jPanel1Layout.setHorizontalGroup(
  56.             jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
  57.             .addGroup(jPanel1Layout.createSequentialGroup()
  58.                 .addContainerGap()
  59.                 .addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, 831, Short.MAX_VALUE)
  60.                 .addContainerGap())
  61.         );
  62.         jPanel1Layout.setVerticalGroup(
  63.             jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
  64.             .addGroup(jPanel1Layout.createSequentialGroup()
  65.                 .addContainerGap()
  66.                 .addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, 304, Short.MAX_VALUE)
  67.                 .addContainerGap())
  68.         );
  69.  
  70.         javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
  71.         getContentPane().setLayout(layout);
  72.         layout.setHorizontalGroup(
  73.             layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
  74.             .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
  75.         );
  76.         layout.setVerticalGroup(
  77.             layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
  78.             .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
  79.         );
  80.  
  81.         setBounds(0, 0, 865, 360);
  82.     }// </editor-fold>                        
  83.  
  84.  
  85.     // Variables declaration - do not modify                    
  86.     private javax.swing.JLabel jLabel1;
  87.     private javax.swing.JPanel jPanel1;
  88.     // End of variables declaration                  
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement