“Setbounds in Java” Code-Antworten

Java Setbounds

import javax.swing.*;    
public class button {  
public static void main(String[] args) {  

JFrame frame = new JFrame;
frame.setSize(400, 400);
frame.setVisible(true);
frame.setLayout(null);
  
  //create button
  
JButton btn = new JButton("ok");
btn.setBounds(150, 200, 50, 50); // Properties of button, size, x, and y.
  
  //append button to frame
  
frame.add(btn);

}}
ayaan

Setbounds in Java

setBounds(int x-coordinate, int y-coordinate, int width, int height)
Nutty Nightingale

Ähnliche Antworten wie “Setbounds in Java”

Fragen ähnlich wie “Setbounds in Java”

Weitere verwandte Antworten zu “Setbounds in Java” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen