有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

swing如何使用按钮(java)更改图形的大小?

我在画花,当我按下“施肥”按钮时,我需要将“头”的大小加倍,然后当我按下“重置大小”按钮时,将其重置为原始大小。我正在使用Netbeans。到目前为止,我所尝试的一切都没有奏效。。。。帮助?:)

enter image description here

面板代码:

package Versie4;
import java.awt.Color;
import java.awt.Graphics;

public class PanelFlowers extends javax.swing.JPanel {

    private int amount, size;
    private String color = "";

    public PanelFlowers() {
        initComponents();
        repaint();
    }

    @Override
    public void paintComponent(Graphics g){
        super.paintComponent(g);

        int teller;

        g.setColor(Color.RED);  //flowerpot
        g.fillRect(300, 350, 500, 100);

        int x = 1;
        int size = 40;
        for (teller=1; teller <= amount ;teller++) { 

            //Flower 1
        g.setColor(Color.GREEN);  //stem
        g.fillRect(320 + x, 250, 10, 100);


            switch (color) {            //Colours of petals
                case "red":
                    g.setColor(Color.red);
                    break;
                case "blue":
                    g.setColor(Color.blue);
                    break;
                case "yellow":
                    g.setColor(Color.yellow);
                    break;
                case "orange":
                    g.setColor(Color.orange);
                    break;
                case "pink":
                    g.setColor(Color.PINK);
                    break;
                case "purple":
                    g.setColor(new Color(102, 0, 204));
                    break;
            }

        g.fillOval(304 + x, 190, size, size); //petals
        g.fillOval(330 + x, 210, size, size);
        g.fillOval(320 + x, 240, size, size);
        g.fillOval(290 + x, 240, size, size);
        g.fillOval(280 + x, 210, size, size);


        g.setColor(Color.YELLOW);  //pistil
        g.fillOval(312 + x, 225, 25, 25);

        x = teller * 80;

        }



    }


    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
    private void initComponents() {

        lblamount = new javax.swing.JLabel();
        txtamount = new javax.swing.JTextField();
        lblcolor = new javax.swing.JLabel();
        txtcolor = new javax.swing.JTextField();
        btngrow = new javax.swing.JButton();
        btnreset = new javax.swing.JButton();
        btnfertilize = new javax.swing.JButton();

        lblamount.setText("Amount: ");

        txtamount.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                txtamountActionPerformed(evt);
            }
        });

        lblcolor.setText("Color: ");

        txtcolor.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                txtcolorActionPerformed(evt);
            }
        });

        btngrow.setText("Grow!");
        btngrow.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                btngrowActionPerformed(evt);
            }
        });

        btnreset.setText("Reset Size");

        btnfertilize.setText("Fertilize");
        btnfertilize.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                btnfertilizeActionPerformed(evt);
            }
        });

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
        this.setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addContainerGap()
                .addComponent(lblamount)
                .addGap(18, 18, 18)
                .addComponent(txtamount, javax.swing.GroupLayout.PREFERRED_SIZE, 57, javax.swing.GroupLayout.PREFERRED_SIZE)
                .addGap(41, 41, 41)
                .addComponent(lblcolor)
                .addGap(18, 18, 18)
                .addComponent(txtcolor, javax.swing.GroupLayout.PREFERRED_SIZE, 59, javax.swing.GroupLayout.PREFERRED_SIZE)
                .addGap(18, 18, 18)
                .addComponent(btngrow)
                .addGap(18, 18, 18)
                .addComponent(btnfertilize)
                .addGap(18, 18, 18)
                .addComponent(btnreset)
                .addContainerGap(185, Short.MAX_VALUE))
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addContainerGap()
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                    .addComponent(lblamount)
                    .addComponent(txtamount, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addComponent(lblcolor)
                    .addComponent(txtcolor, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addComponent(btngrow)
                    .addComponent(btnreset)
                    .addComponent(btnfertilize))
                .addContainerGap(412, Short.MAX_VALUE))
        );
    }// </editor-fold>                        

    private void txtamountActionPerformed(java.awt.event.ActionEvent evt) {                                          

    }                                         

    private void txtcolorActionPerformed(java.awt.event.ActionEvent evt) {                                         
        // TODO add your handling code here:
    }                                        

    private void btngrowActionPerformed(java.awt.event.ActionEvent evt) {                                        
    amount = Integer.parseInt(txtamount.getText());
    color = this.txtcolor.getText();
    repaint();

    }                                       

    private void btnfertilizeActionPerformed(java.awt.event.ActionEvent evt) {                                             
       size = size * 2;
    }                                            

    // Variables declaration - do not modify                     
    private javax.swing.JButton btnfertilize;
    private javax.swing.JButton btngrow;
    private javax.swing.JButton btnreset;
    private javax.swing.JLabel lblamount;
    private javax.swing.JLabel lblcolor;
    private javax.swing.JTextField txtamount;
    private javax.swing.JTextField txtcolor;
    // End of variables declaration                   
}

框架代码:

package Versie4;


public class FrameFlowers extends javax.swing.JFrame {


    public FrameFlowers() {
        initComponents();
        setSize(900, 600);
        setContentPane(new PanelFlowers());
    }


    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
    private void initComponents() {

        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 400, Short.MAX_VALUE)
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 300, Short.MAX_VALUE)
        );

        pack();
    }// </editor-fold>                        

    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        /* Set the Nimbus look and feel */
        //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
        /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
         * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
         */
        try {
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException ex) {
            java.util.logging.Logger.getLogger(FrameFlowers.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(FrameFlowers.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(FrameFlowers.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(FrameFlowers.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }
        //</editor-fold>

        /* Create and display the form */
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new FrameFlowers().setVisible(true);
            }
        });
    }
    // Variables declaration - do not modify                     
    // End of variables declaration                   
}

共 (2) 个答案

  1. # 1 楼答案

    以下是我为感兴趣的人提供的解决方案:

    package Versie4;
    import java.awt.Color;
    import java.awt.Graphics;
    
    public class PanelFlowers extends javax.swing.JPanel {
    
        private int amount, petalSize = 40, pistilSize = 25, pistilPositionX = 312, 
                pistilPositionY = 225, stemPositionX = 320,stemPositionY = 250;
        private String color = "";
        private boolean fertilized = false;
        public PanelFlowers() {
            initComponents();
            repaint();
        }
    
        @Override
        public void paintComponent(Graphics g){
            super.paintComponent(g);
            setBackground(Color.CYAN);
    
    
    
    
    
            g.setColor(Color.RED);  //flowerpot
            g.fillRect(300, 350, 500, 100);
    
    
            g.setColor(Color.BLACK);
            // cloud        
           g.fillPolygon(cloud);
    
    
    
            int teller;
            int x = 1;
            for (teller=1; teller <= amount ;teller++) { 
    
                //Flower 1
            g.setColor(Color.GREEN);  //stem
            g.fillRect(stemPositionX + x, stemPositionY, 10, 100);
    
    
                switch (color) {            //Colours of petals
                    case "red":
                        g.setColor(Color.red);
                        break;
                    case "blue":
                        g.setColor(Color.blue);
                        break;
                    case "yellow":
                        g.setColor(Color.yellow);
                        break;
                    case "orange":
                        g.setColor(Color.orange);
                        break;
                    case "pink":
                        g.setColor(Color.PINK);
                        break;
                    case "purple":
                        g.setColor(new Color(102, 0, 204));
                        break;
                }
    
            g.fillOval(304 + x, 190, petalSize, petalSize); //petals
            g.fillOval(330 + x, 210, petalSize, petalSize);
            g.fillOval(320 + x, 240, petalSize, petalSize);
            g.fillOval(290 + x, 240, petalSize, petalSize);
            g.fillOval(280 + x, 210, petalSize, petalSize);
    
    
            g.setColor(Color.YELLOW);  //pistil(The middle thingy)
            g.fillOval(pistilPositionX + x, pistilPositionY, pistilSize, pistilSize);
    
            x = teller * 80;
    
            }
    
        }
    
    
    
    
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
        private void initComponents() {
    
            lblamount = new javax.swing.JLabel();
            txtamount = new javax.swing.JTextField();
            lblcolor = new javax.swing.JLabel();
            txtcolor = new javax.swing.JTextField();
            btngrow = new javax.swing.JButton();
            btnreset = new javax.swing.JButton();
            btnfertilize = new javax.swing.JButton();
            lblflower = new javax.swing.JLabel();
            lblfarmer = new javax.swing.JLabel();
    
            lblamount.setText("Amount: ");
    
            txtamount.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    txtamountActionPerformed(evt);
                }
            });
    
            lblcolor.setText("Color: ");
    
            txtcolor.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    txtcolorActionPerformed(evt);
                }
            });
    
            btngrow.setText("Grow!");
            btngrow.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    btngrowActionPerformed(evt);
                }
            });
    
            btnreset.setText("Reset Size");
            btnreset.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    btnresetActionPerformed(evt);
                }
            });
    
            btnfertilize.setText("Fertilize");
            btnfertilize.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    btnfertilizeActionPerformed(evt);
                }
            });
    
            lblflower.setText("FLOWER  >");
    
            lblfarmer.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Images/bird .gif"))); // NOI18N
            lblfarmer.setText("Bird");
    
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
            this.setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                    .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .addComponent(lblflower)
                    .addGap(18, 18, 18)
                    .addComponent(lblamount)
                    .addGap(18, 18, 18)
                    .addComponent(txtamount, javax.swing.GroupLayout.PREFERRED_SIZE, 57, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addGap(18, 18, 18)
                    .addComponent(lblcolor)
                    .addGap(18, 18, 18)
                    .addComponent(txtcolor, javax.swing.GroupLayout.PREFERRED_SIZE, 59, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addGap(18, 18, 18)
                    .addComponent(btngrow)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                    .addComponent(btnfertilize)
                    .addGap(18, 18, 18)
                    .addComponent(btnreset)
                    .addContainerGap())
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addComponent(lblfarmer, javax.swing.GroupLayout.PREFERRED_SIZE, 150, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            );
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(lblamount)
                        .addComponent(txtamount, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(lblcolor)
                        .addComponent(txtcolor, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(btngrow)
                        .addComponent(btnreset)
                        .addComponent(btnfertilize)
                        .addComponent(lblflower))
                    .addGap(78, 78, 78)
                    .addComponent(lblfarmer)
                    .addContainerGap(320, Short.MAX_VALUE))
            );
        }// </editor-fold>                        
    
        private void txtamountActionPerformed(java.awt.event.ActionEvent evt) {                                          
            amount = 1;
            txtamount.setText("" + amount); 
        }                                         
    
        private void txtcolorActionPerformed(java.awt.event.ActionEvent evt) {                                         
            // TODO add your handling code here:
        }                                        
    
        private void btngrowActionPerformed(java.awt.event.ActionEvent evt) {                                        
        amount = Integer.parseInt(txtamount.getText());
        color = this.txtcolor.getText();
        repaint();
    
        }                                       
    
        private void btnfertilizeActionPerformed(java.awt.event.ActionEvent evt) {                                             
           if(fertilized == false){
                petalSize = (int) petalSize * 2;
                pistilSize = (int) pistilSize * 2;
                pistilPositionX += 8 ;
                pistilPositionY += 8 ;
                stemPositionX += 20;
                fertilized = true;
           repaint();
           }
        }                                            
    
        private void btnresetActionPerformed(java.awt.event.ActionEvent evt) {                                         
            petalSize = 40;
            pistilSize = 25;
            pistilPositionX -= 8 ;
            pistilPositionY -= 8 ;
            stemPositionX -= 20;
            fertilized = false;
    
    
            repaint();
        }                                        
    
        // Variables declaration - do not modify                     
        private javax.swing.JButton btnfertilize;
        private javax.swing.JButton btngrow;
        private javax.swing.JButton btnreset;
        private javax.swing.JLabel lblamount;
        private javax.swing.JLabel lblcolor;
        private javax.swing.JLabel lblflower;
        private javax.swing.JTextField txtamount;
        private javax.swing.JTextField txtcolor;
        // End of variables declaration                   
    }
    
  2. # 2 楼答案

    这次我会给你一些提示。你可以自己做

    1. 绘制椭圆时,使用的是参数size,即int。将此size变量的值更改为放大和缩小

    2. 根据这个size变量计算每一个其他大小:类似于pistil椭圆的大小

      g.setColor(Color.YELLOW);  //pistil
      g.fillOval(312 + x, 225, size/2, size/2); // <   removing fixed value 25
      
    3. 现在,尝试根据size更改移位变量x

      x = teller * (size * 2);
      

    编辑:现在,我已经为您做了一个决议,因为在演讲中要解释的话太多了。请记住,真实的活体(如兔子或花)不可能用几何体以任何简单的方式实现。然而,对于放大:我实际上是指你想要的东西;当我们施肥的时候,我们会种花。我给了你一些提示,这样你就能知道它有多复杂

    @Override
        public void paintComponent(Graphics g){
            super.paintComponent(g);
    
            int teller;
    
            g.setColor(Color.RED);  //flowerpot 
            g.fillRect(300, 400, 500, 100);
    
            int x = 1;
           // int size = 40;
            for (teller=1; teller <= amount ;teller++) { 
    
                //Flower 1
            g.setColor(Color.GREEN);  //stem
            g.fillRect(320 + x + size/4, 250 - size*2, size/4, 400 - (250 - size*2));
    
    
            g.setColor(new Color(102, 0, 204)); //<<   using purple, removed switch-ase
    
            int centerX = 320 + x ;
            int centerY = 250 - size*2 ;
    
            g.fillOval(centerX - size/2 , centerY - size/4, size, size); //petals
            g.fillOval(centerX + size/2 , centerY - size/4, size, size);
            g.fillOval(centerX - size/4 , centerY + size/4, size, size);
            g.fillOval(centerX + size/4 , centerY + size/4, size, size);
           g.fillOval(centerX ,  centerY - size/2, size, size);
    
    
            g.setColor(Color.YELLOW);  //pistil
            g.fillOval(centerX + size/4 , centerY , size/2, size/2);
    
            x = teller * size * 3;
    
            }
    
        }
    

    Edit:别忘了在btnfertilizeActionPerformed(ActionEvent)方法中调用repaint()

    private void btnfertilizeActionPerformed(ActionEvent evt){                                           
               size = size * 2;
               repaint();
     }  
    

    您将看到,由于除法产生的分数误差,它仍然不是那么完美