javafx
ScrollPane
수색…
소개
ScrollPane은 내용의 동적 뷰를 제공하는 컨트롤입니다. 이보기는 다양한 방법으로 제어됩니다. (증가 / 감소 버튼 / 마우스 휠)을 사용하여 내용을 볼 수 있습니다.
A) 고정 콘텐츠 크기 :
내용의 크기는 ScrollPane 컨테이너의 크기와 동일합니다.
import javafx.scene.control.ScrollPane; //Import the ScrollPane
import javafx.scene.control.ScrollPane.ScrollBarPolicy; //Import the ScrollBarPolicy
import javafx.scene.layout.Pane;
ScrollPane scrollpane;
Pane content = new Pane(); //We will use this Pane as a content
scrollpane = new ScrollPane(content); //Initialize and add content as a parameter
scrollpane.setPrefSize(300, 300); //Initialize the size of the ScrollPane
scrollpane.setFitToWidth(true); //Adapt the content to the width of ScrollPane
scrollpane.setFitToHeight(true); //Adapt the content to the height of ScrollPane
scrollpane.setHbarPolicy(ScrollBarPolicy.ALWAYS); //Control the visibility of the Horizontal ScrollBar
scrollpane.setVbarPolicy(ScrollBarPolicy.NEVER); //Control the visibility of the Vertical ScrollBar
//There are three types of visibility (ALWAYS/AS_NEEDED/NEVER)
B) 동적 콘텐츠 크기 :
내용의 크기는보기를 통해 이동하여 볼 수있는 두 축 (가로 및 세로)의 내용 제한을 초과하는 추가 요소에 따라 변경됩니다.
import javafx.scene.control.ScrollPane; //Import the ScrollPane
import javafx.scene.control.ScrollPane.ScrollBarPolicy; //Import the ScrollBarPolicy
import javafx.scene.layout.Pane;
ScrollPane scrollpane;
Pane content = new Pane(); //We will use this Pane as a content
scrollpane = new ScrollPane();
scrollpane.setPrefSize(300, 300); //Initialize the size of the ScrollPane
content.setMinSize(300,300); //Here a minimum size is set so that the container can be extended.
scrollpane.setContent(content); // we add the content to the ScrollPane
참고 : 여기서는 두 가지 메소드 (setFitToWidth / setFitToHeight)가 필요하지 않습니다.
ScrollPane의 스타일 :
ScrollPane의 외관은 " CSS "라는 개념과 컨트롤의 " 속성 "을 존중하고 물론 " 상상력 "을 갖춤으로써 쉽게 변경할 수 있습니다.
A) ScrollPane을 구성하는 요소 :
B) CSS 속성 :
.scroll-bar:vertical .track{}
.scroll-bar:horizontal .track{}
.scroll-bar:horizontal .thumb{}
.scroll-bar:vertical .thumb{}
.scroll-bar:vertical *.increment-button,
.scroll-bar:vertical *.decrement-button{}
.scroll-bar:vertical *.increment-arrow .content,
.scroll-bar:vertical *.decrement-arrow .content{}
.scroll-bar:vertical *.increment-arrow,
.scroll-bar:vertical *.decrement-arrow{}
.scroll-bar:horizontal *.increment-button,
.scroll-bar:horizontal *.decrement-button{}
.scroll-bar:horizontal *.increment-arrow .content,
.scroll-bar:horizontal *.decrement-arrow .content{}
.scroll-bar:horizontal *.increment-arrow,
.scroll-bar:horizontal *.decrement-arrow{}
.scroll-pane .corner{}
.scroll-pane{}
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow