Package name.antonsmirnov.javafx.dialog

Source Code of name.antonsmirnov.javafx.dialog.LocaleDemo

package name.antonsmirnov.javafx.dialog;

import javafx.application.Application;
import javafx.event.Event;
import javafx.event.EventHandler;
import javafx.stage.Stage;

import java.util.Locale;

public class LocaleDemo extends Application {
  public static void main(String[] args) {
    launch(args);
  }

  @Override
  public void start(Stage stage) throws Exception {
    Locale.setDefault(Locale.FRENCH);
    Dialog.buildConfirmation("", "").addYesButton(new EventHandler() {
      @Override
      public void handle(Event event) {
        //nothing to do
      }
    }).build().show();
  }
}
TOP

Related Classes of name.antonsmirnov.javafx.dialog.LocaleDemo

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.