-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from SafeGroceryStore/dev
更新代码
- Loading branch information
Showing
14 changed files
with
78 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import java.lang.*?> | ||
<?import java.util.*?> | ||
<?import javafx.scene.*?> | ||
<?import javafx.scene.control.*?> | ||
<?import javafx.scene.layout.*?> | ||
<?import javafx.scene.control.Button?> | ||
<?import javafx.scene.control.Label?> | ||
<?import javafx.scene.layout.AnchorPane?> | ||
<?import javafx.scene.web.WebView?> | ||
|
||
<AnchorPane prefHeight="260.0" prefWidth="340.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="Controller.UpdateController"> | ||
<AnchorPane prefHeight="389.0" prefWidth="514.0" xmlns="http://javafx.com/javafx/16" xmlns:fx="http://javafx.com/fxml/1" fx:controller="Controller.UpdateController"> | ||
<children> | ||
<Button fx:id="downloadBtn" layoutX="229.0" layoutY="219.0" mnemonicParsing="false" onAction="#downloadAction" text="下载" /> | ||
<Button fx:id="cancelBtn" layoutX="283.0" layoutY="219.0" mnemonicParsing="false" onAction="#cancelAction" text="取消" /> | ||
<Label fx:id="updateMsgLabel" layoutX="13.0" layoutY="199.0" prefHeight="17.0" prefWidth="314.0" /> | ||
<Button fx:id="downloadBtn" layoutX="402.0" layoutY="350.0" mnemonicParsing="false" onAction="#downloadAction" text="下载" /> | ||
<Button fx:id="cancelBtn" layoutX="456.0" layoutY="350.0" mnemonicParsing="false" onAction="#cancelAction" text="取消" /> | ||
<Label fx:id="updateMsgLabel" layoutX="14.0" layoutY="320.0" prefHeight="17.0" prefWidth="314.0" /> | ||
<Label fx:id="currentVersionLabel" layoutX="14.0" layoutY="14.0" prefHeight="17.0" prefWidth="249.0" text="当前版本: " /> | ||
<Label fx:id="newVersionLabel" layoutX="14.0" layoutY="40.0" prefHeight="17.0" prefWidth="249.0" text="最新版本: " /> | ||
<Button fx:id="checkVersionBtn" layoutX="149.0" layoutY="219.0" mnemonicParsing="false" onAction="#checkVersion" text="检查更新" /> | ||
<TextArea fx:id="updateLogTextArea" layoutX="13.0" layoutY="90.0" prefHeight="103.0" prefWidth="314.0" wrapText="true" /> | ||
<Button fx:id="checkVersionBtn" layoutX="322.0" layoutY="350.0" mnemonicParsing="false" onAction="#checkVersion" text="检查更新" /> | ||
<Label fx:id="newVersionLabel1" layoutX="14.0" layoutY="66.0" prefHeight="17.0" prefWidth="70.0" text="更新详情:" /> | ||
<WebView fx:id="updateLogWebView" layoutX="15.0" layoutY="89.0" prefHeight="219.0" prefWidth="485.0" /> | ||
</children> | ||
</AnchorPane> |