What's the difference between fx:id and id: in JavaFX?

后端 未结 4 962
广开言路
广开言路 2020-11-22 05:50

Maybe a really newbie\'s question....

I\'m starting learning JavaFX in a FMXL Application using the Scene Builder, by reading this tutorials:

http://docs.ora

4条回答
  •  傲寒
    傲寒 (楼主)
    2020-11-22 06:02

    In JavaFX id is used to set a CSS ID to a component. And fx:id is used for accessing that component in code (i.e. in a controller class). fx:id works like a components name.

提交回复
热议问题