创建按钮-下载 多线程编程技术开发资料 高清完整pdf版

时间:2024-06-23 12:02:09
【文件属性】:

文件名称:创建按钮-下载 多线程编程技术开发资料 高清完整pdf版

文件大小:3.22MB

文件格式:PDF

更新时间:2024-06-23 12:02:09

JavaFX2.0 RIA 教程 应用

3.1 创建按钮 可以使用三种构造器创建 JavaFX 应用程序的按钮控件,如示例 3-1 所示: 示例 3-1 创建按钮 //A button with an empty text caption. Button button1 = new Button(); //A button with the specified text caption. Button button2 = new Button("Accept"); //A button with the specified text caption and icon. Image imageOk = new Image(getClass().getResourceAsStream("ok.png")); Button button3 = new Button("Accept", new ImageView(imageOk)); 因为 Button 类扩展自 Labeled 类,也可以使用如下方法为不带图标和文本标题的按钮设 定相关内容:


网友评论