我正在尝试根据媒体播放器窗口更改媒体视图的高度和宽度。
因此,请告诉我如何添加scene.setonzoom()。
最佳答案
为了与场景一起调整媒体视图的大小,请分别将fitWidthProperty
的fitHeightProperty
和MediaView
与场景的widthProperty
和heightProperty
绑定。
mediaView.fitWidthProperty().bind(scene.widthProperty());
mediaView.fitHeightProperty().bind(scene.heightProperty());