“Setbounds в Java” Ответ

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 в Java

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

Ответы похожие на “Setbounds в Java”

Вопросы похожие на “Setbounds в Java”

Больше похожих ответов на “Setbounds в Java” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования