Chnaged things

This commit is contained in:
Michael-Jouanneau 2016-10-30 15:02:45 +01:00
parent 814b0c0665
commit 4c9ce2c591
3 changed files with 11 additions and 8 deletions

View File

@ -19,15 +19,13 @@ public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception{
primaryStage.initStyle(StageStyle.UNDECORATED);
Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
Parent root = FXMLLoader.load(getClass().getResource("Main_Launcher.fxml"));
primaryStage.setTitle("Team-Avion Launcher [WIP]");
primaryStage.setScene(new Scene(root, 900, 500));
primaryStage.show();
Desktop.getDesktop().browse(new URI("www.youtube.com"));
root.lookup("#exit").setOnMouseClicked(event -> primaryStage.close());
root.lookup("#min").setOnMouseClicked(event -> primaryStage.setIconified(true));
// Drag
root.lookup("#rectangle").setOnMousePressed(event -> {

View File

@ -2,9 +2,6 @@
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Tab?>
<?import javafx.scene.control.TabPane?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.shape.Rectangle?>
<?import javafx.scene.text.Font?>
@ -13,7 +10,8 @@
<children>
<Rectangle id="rectangle" arcHeight="5.0" arcWidth="5.0" fill="white" height="50.0" strokeType="INSIDE" width="900.0" />
<Button id="exit" alignment="TOP_RIGHT" contentDisplay="RIGHT" layoutX="862.0" layoutY="13.0" mnemonicParsing="false" stylesheets="@../assets/style/nav.css" text="X" textFill="WHITE" />
<Label layoutX="46.0" layoutY="11.0" text="Team-Avion Launcher" textFill="WHITE">
<Button id="min" alignment="TOP_RIGHT" contentDisplay="RIGHT" layoutX="841.0" layoutY="13.0" mnemonicParsing="false" stylesheets="@../assets/style/nav.css" text="-" textFill="WHITE" />
<Label layoutX="46.0" layoutY="11.0" text="Team-Avion Launcher" textFill="WHITE">
<font>
<Font name="Centaur" size="24.0" />
</font>

View File

@ -7,6 +7,13 @@
#exit{
-fx-background-color: rgba(30, 25, 25, 1);
}
#min {
-fx-background-color: rgba(30, 25, 25, 1);
}
#min:hover {
-fx-border-radius: 30px;
-fx-background-color: red;
}
#exit:hover{
-fx-border-radius: 30px;
-fx-background-color: red;