Answer the question
In order to leave comments, you need to log in
Why are the items not showing?
I have the following code
public add(){
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
setLocationRelativeTo(null);
setSize(new Dimension(400, 200));
setTitle("Add");
setLayout(new FlowLayout());
JTextPane jTextPane = new JTextPane();
jTextPane.setPreferredSize(new Dimension(390, 100));
JButton jButton = new JButton("добавить");
jButton.setPreferredSize(new Dimension(200, 30));
add(jTextPane);
add(jButton);
setVisible(true);
}
Answer the question
In order to leave comments, you need to log in
Issue resolved
setVisible(true);
add(jTextPane);
add(jButton);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question