Мне нужно разместить JFrame на моем экране.Но я не могу заставить их появиться на правой стороне экрана внизу.
Пожалуйста, кто-нибудь может объяснить мне, как их расположить, если вы можете описать, как это сделать, было бы здорово.
Вот код на данный момент.
//Gets the screen size and positions the frame left bottom of the screen
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
GraphicsDevice defaultScreen = ge.getDefaultScreenDevice();
Rectangle rect = defaultScreen.getDefaultConfiguration().getBounds();
int x = (int)rect.getMinX();
int y = (int)rect.getMaxY()- frame.getHeight();
frame.setLocation(x ,y - 45);