Mac和Windows上的对齐方式不同

时间:2019-04-16 18:10:13

标签: javafx

Windows

Mac

如您所见,数字列具有不同的对齐方式。这不好。

使用不同的屏幕尺寸,此问题不是尺寸问题,而是不同操作系统中的问题。

<VBox spacing="5.0" BorderPane.alignment="CENTER">
                    <Label text="0">
                       <font>
                          <Font size="14.0" />
                       </font>
                       <VBox.margin>
                          <Insets />
                       </VBox.margin>
                    </Label>
                    <Label text="1">
                       <font>
                          <Font size="14.0" />
                       </font>
                       <VBox.margin>
                          <Insets />
                       </VBox.margin>
                    </Label>
                    <Label text="2">
                       <font>
                          <Font size="14.0" />
                       </font>
                       <VBox.margin>
                          <Insets />
                       </VBox.margin>
                    </Label>
                    <Label text="3">
                       <font>
                          <Font size="14.0" />
                       </font>
                       <VBox.margin>
                          <Insets />
                       </VBox.margin>
                    </Label>
                    <Label text="4">
                       <font>
                          <Font size="14.0" />
                       </font>
                       <VBox.margin>
                          <Insets />
                       </VBox.margin>
                    </Label>
                    <Label text="5">
                       <font>
                          <Font size="14.0" />
                       </font>
                       <VBox.margin>
                          <Insets />
                       </VBox.margin>
                    </Label>
                    <Label text="6">
                       <font>
                          <Font size="14.0" />
                       </font>
                       <VBox.margin>
                          <Insets />
                       </VBox.margin>
                    </Label>
                    <Label text="7">
                       <font>
                          <Font size="14.0" />
                       </font>
                       <VBox.margin>
                          <Insets />
                       </VBox.margin>
                    </Label>
                    <Label text="8">
                       <font>
                          <Font size="14.0" />
                       </font>
                       <VBox.margin>
                          <Insets />
                       </VBox.margin>
                    </Label>
                    <Label text="9">
                       <font>
                          <Font size="14.0" />
                       </font>
                       <VBox.margin>
                          <Insets />
                       </VBox.margin>
                    </Label>
                 <BorderPane.margin>
                    <Insets right="5.0" />
                 </BorderPane.margin>
              </VBox>

需要解决此问题,在Mac和Windows上将保持一致。

P.S。在Mac上,“取消”按钮也看起来像“可以...”。这也不好。

0 个答案:

没有答案