Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ezhov-da/926c0b5bb416ecc5fbc66da32bfa7d4f to your computer and use it in GitHub Desktop.
Save ezhov-da/926c0b5bb416ecc5fbc66da32bfa7d4f to your computer and use it in GitHub Desktop.
java вставляем форму в приложение
[code:]java[:code]
SwingUtilities.invokeLater(new Runnable()
{
@Override
public void run()
{
try
{
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Throwable ex)
{
//
}
JFrame frame = new JFrame("_________");
frame.setSize(1000, 600);
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
});
[/code]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment