Uses of Class
javafx.stage.Window
-
Packages that use Window 软件包 描述 javafx.print 提供JavaFX Printing API的公共类。javafx.scene 为JavaFX Scene Graph API提供核心的基类集。javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。javafx.stage 提供JavaFX内容的顶级容器类。 -
-
Uses of Window in javafx.print
Methods in javafx.print with parameters of type Window Modifier and Type 方法 描述 boolean
PrinterJob. showPageSetupDialog(Window owner)
显示页面设置对话框。boolean
PrinterJob. showPrintDialog(Window owner)
显示打印对话框。 -
Uses of Window in javafx.scene
Methods in javafx.scene that return Window Modifier and Type 方法 描述 Window
Scene. getWindow()
获取属性窗口的值。Methods in javafx.scene that return types with arguments of type Window Modifier and Type 方法 描述 ReadOnlyObjectProperty<Window>
Scene. windowProperty()
该Window
为这Scene
-
Uses of Window in javafx.scene.control
Subclasses of Window in javafx.scene.control Modifier and Type Class 描述 class
ContextMenu
一个包含菜单项的ObservableList的弹出控件。class
PopupControl
PopupWindow的扩展,允许CSS样式。class
Tooltip
工具提示是常见的UI元素,通常用于在节点由鼠标悬停时在场景图中显示有关节点的附加信息。Methods in javafx.scene.control that return Window Modifier and Type 方法 描述 Window
Dialog. getOwner()
检索该对话框的所有者窗口,或者取消未知对话框的null。Methods in javafx.scene.control with parameters of type Window Modifier and Type 方法 描述 void
Dialog. initOwner(Window window)
指定该对话框的所有者Window
,或者对于顶级的未知对话框,该值为null。 -
Uses of Window in javafx.stage
Subclasses of Window in javafx.stage Modifier and Type Class 描述 class
Popup
弹出窗口是用于场景图形的特殊的类似窗口的容器。class
PopupWindow
PopupWindow是各种不同类型的基于弹出窗口的窗口的父级,包括Popup
和Tooltip
和ContextMenu
。class
Stage
JavaFXStage
类是顶级的JavaFX容器。Methods in javafx.stage that return Window Modifier and Type 方法 描述 Window
Stage. getOwner()
检索该阶段的所有者窗口,或者取消未知阶段的空值。Window
PopupWindow. getOwnerWindow()
获取属性ownerWindow的值。Methods in javafx.stage that return types with arguments of type Window Modifier and Type 方法 描述 static ObservableList<Window>
Window. getWindows()
返回一个包含对当前显示的JavaFX窗口的引用的列表。ReadOnlyObjectProperty<Window>
PopupWindow. ownerWindowProperty()
作为此弹出窗口的父窗口。Methods in javafx.stage with parameters of type Window Modifier and Type 方法 描述 void
Stage. initOwner(Window owner)
指定此阶段的所有者窗口,或者指定顶级,未知级别的空值。void
PopupWindow. show(Window owner)
显示弹出窗口。void
PopupWindow. show(Window ownerWindow, double anchorX, double anchorY)
显示屏幕上指定位置的弹出窗口。File
DirectoryChooser. showDialog(Window ownerWindow)
显示新的目录选择对话框。File
FileChooser. showOpenDialog(Window ownerWindow)
显示一个新的文件打开对话框。List<File>
FileChooser. showOpenMultipleDialog(Window ownerWindow)
显示一个新的文件打开对话框,其中可以选择多个文件。File
FileChooser. showSaveDialog(Window ownerWindow)
显示一个新的文件保存对话框。Constructors in javafx.stage with parameters of type Window Constructor 描述 WindowEvent(Window source, EventType<? extends Event> eventType)
使用指定的事件源,目标和类型构造新的Event
。
-