私は国境を作ろうとしていますが、それは成功しています。境界線が始まる前に、ある程度の間隔が必要です。このコードを使用すると、境界線がテキスト ボックスの周りに非常にきつく巻き付けられます。やりたいこと:理想
public static void main(String[] args) {
// TODO code application logic here
//Variables
JFrame mainframe = new JFrame();
mainframe.setSize(500, 435);
JPanel cards = new JPanel(new CardLayout());
CardLayout cl = (CardLayout)(cards.getLayout());
mainframe.setTitle("Future Retro Gaming Launcher");
//Screen1
JPanel screen1 = new JPanel();
JTextPane TextPaneScreen1 = new JTextPane();
TextPaneScreen1.setEditable(false);
TextPaneScreen1.setBackground(new java.awt.Color(240, 240, 240));
TextPaneScreen1.setText("Welcome to the install wizard for Professor Phys!\n\nPlease agree to the following terms and click the next button to continue.");
TextPaneScreen1.setSize(358, 48);
TextPaneScreen1.setLocation(0, 0);
TextPaneScreen1.setBorder(BorderFactory.createLineBorder(Color.black));
TextPaneScreen1.setMargin(new Insets(3,3,3,3));
screen1.add(TextPaneScreen1);
cards.add(screen1);
mainframe.add(cards);
mainframe.setVisible(true);
}