Skip to content

jake-stacktrace/com.jake.swtfx.binding

Repository files navigation

com.jake.swtfx.binding

Supports using SWT Controls with Java FX Bindings

Installation (Gradle):

repositories {
  jcenter()
}

dependencies {
    compile 'com.jake:com.jake.swtfx.binding:1.0.1'
}

Usage:
  SWTBinding.wrap(swtControl).someProperty().bind(observable);

For example:
  Label label = new Label(compositeParent, SWT.NONE);
  StringProperty nameProperty = new SimpleStringProperty();
  SWTBinding.wrap(label).textProperty().bind(nameProperty);

About

Supports using SWT Controls with Java FX Bindings

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages