Chnaged things

This commit is contained in:
Michael-Jouanneau 2016-10-30 15:16:31 +01:00
parent 4c9ce2c591
commit a31696c424
2 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,7 @@
package Launcher;
import javafx.application.Application;
import javafx.beans.property.ReadOnlyBooleanProperty;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
@ -18,6 +19,7 @@ public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception{
primaryStage.initStyle(StageStyle.UNDECORATED);
Parent root = FXMLLoader.load(getClass().getResource("Main_Launcher.fxml"));
primaryStage.setTitle("Team-Avion Launcher [WIP]");
@ -32,6 +34,7 @@ public class Main extends Application {
xOffset = event.getSceneX();
yOffset = event.getSceneY();
});
root.lookup("#rectangle").setOnMouseDragged(event -> {
primaryStage.setX(event.getScreenX() - xOffset);
primaryStage.setY(event.getScreenY() - yOffset);

View File

@ -12,9 +12,9 @@
}
#min:hover {
-fx-border-radius: 30px;
-fx-background-color: red;
-fx-background-color: #bf0000;
}
#exit:hover{
-fx-border-radius: 30px;
-fx-background-color: red;
-fx-background-color: #bf0000;
}