From 5f9150b0f6a2315354b669ac33aa1f6f6ab12d40 Mon Sep 17 00:00:00 2001 From: suisui Date: Wed, 22 Jan 2020 10:21:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.en.md | 60 ++++++++++++++++++++++++++-------------------------- README.md | 2 +- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/README.en.md b/README.en.md index bcef764..88df066 100644 --- a/README.en.md +++ b/README.en.md @@ -2,43 +2,43 @@ ## Contents -[Introduction](#Introduction) +[Introduction](#introduction) -- [The Process of Developing](#The Process of Developing) +- [The Process of Developing](#the-process-of-developing) -[Maven Repository](#Maven Repository) +[Maven Repository](#maven-repository) -[The Specific Application with Java-Plus](#The Specific Application with Java-Plus) +[The Specific Application with JavaFX-Plus](#the-specific-application-with-javafx-plus) -[The Detailed Functions of JavaFX-Plus](#The Detailed Functions of JavaFX-Plus) +[The Detailed Functions of JavaFX-Plus](#the-detailed-functions-of-javafX-plus) -- [Modularization Development](#Modularization Development) - - [Introduction](#Introduction) - - [How to Create the Module of JavaFX-Plus](#How to Create the Module of JavaFX-Plus) - - [Import the control just generated above in SceneBuilder](#Import the control just generated above in SceneBuilder) -- [Integration with Spring](#Integration with Spring) -- [Signal Mechanism](#Signal Mechanism) -- [The conversion of JavaBean and JavaFXBean](#The conversion of JavaBean and JavaFXBean) -- [Pluggable function](#Pluggable function) -- [Data Binding](#Data Binding) - - [The binding between bean and view](#The binding between bean and view) - - [The binding between view and view](#The binding between view and view) - - [The binding of functional expression](#[The binding of functional expression]) - - [Multi-window switching](#[Multi-window switching]) - - [Introduction](#Introduction) - - [Related Annotations](#[Related Annotations]) - - [Specification](#[Specification]) - - [How to Use](#[How to Use]) - - [Example Code](#[Example Code]) - - [Deficiencies](#Deficiencies) +- [Modularization Development](#modularization-development) + - [Introduction](#introduction) + - [How to Create the Module of JavaFX-Plus](#how-to-create-the-module-of-javafX-plus) + - [Import the control just generated above in SceneBuilder](#import-the-control-just-generated-above-in-scenebuilder) +- [Integration with Spring](#integration-with-spring) +- [Signal Mechanism](#signal-mechanism) +- [The conversion of JavaBean and JavaFXBean](#the-conversion-of-javabean-and-javafxbean) +- [Pluggable function](#pluggable-function) +- [Data Binding](#data-binding) + - [The binding between bean and view](#the-binding-between-bean-and-view) + - [The binding between view and view](#the-binding-between-view-and-view) + - [The binding of functional expression](#the-binding-of-functional-expression) + - [Multi-window switching](#multi-window-switching) + - [Introduction](#introduction) + - [Related Annotations](#related-annotations) + - [Specification](#specification) + - [How to Use](#how-to-use) + - [Example Code](#example-code) + - [Deficiencies](#deficiencies) -[How to Use JavaFX-Plus](#How to Use JavaFX-Plus) +[How to Use JavaFX-Plus](#how-to-use-javafX-plus) -[Annotations](#Annotations) +[Annotations](#annotations) -[Two Factories and A Context](#Two Factories and A Context) +[Two Factories and A Context](#two-factories-and-a-context) -[Start your first JavaFX-Plus Application](#Start your first JavaFX-Plus Application) +[Start your first JavaFX-Plus Application](#start-your-first-javafx-plus-application) ## Introduction @@ -77,7 +77,7 @@ Our project has suspended update from Nov. 25, 2019, and the next release will b ``` -## The Specific Application with Java-Plus +## The Specific Application with JavaFX-Plus Available from this: [Paper Loader](https://gitee.com/Biubiuyuyu/JavaFX-Demo 'Demo') @@ -210,7 +210,7 @@ public class MainController extends FXBaseController { } ``` -![20191208-194336-signalshow](doc/mqDemo/20191208-194336-signalshow.gif) +![20191208-194336-signalshow](README.en/mqDemo/20191208-194336-signalshow.gif) ### The conversion of JavaBean and JavaFXBean diff --git a/README.md b/README.md index ca554ad..6a2beb5 100644 --- a/README.md +++ b/README.md @@ -212,7 +212,7 @@ public class MainController extends FXBaseController { 一般我们写的JavaBean都是基本类型的,但是JavaFXBean的设计哲学是这些属性都应该是JavaFX定义的Property类型,这十分不利于我们的开发,我们如何在不修改JavaBean的条件下,使用到JavaFX的Property的一些优良方法呢?答案是我们通过反射获得基本类型对应的Property(目前仅限于boolean,double,integer,long,string,float,List等基本类型,不支持封装对象。) -![输入图片说明](README/wrap_Javabean.png "wrap_Javabean.png") +![wrap_Javabean](README/wrap_JavaBean.png "wrap_Javabean.png") 而本次设计的过程中希望尽量避免操作界面相关的Property等方法,而是直接操作JavaBean类。例如下面代码。