SWT(JFace)체험 의 RowLayout 레이아웃
FillLayout 에 비해 RowLayout 는 유연 하고 기능 도 강하 다.사용 자 는 레이아웃 중성자 요소 의 크기,여백,줄 바 꿈 과 간격 등 속성 을 설정 할 수 있 습 니 다.
Row Layout 의 스타일.
RowLayout 에 서 는 관련 속성 으로 레이아웃 스타일 을 설정 할 수 있 습 니 다.사용 자 는'RowLayout.속성'방식 으로 RowLayout 의 레이아웃 스타일 을 설정 할 수 있 습 니 다.RowLayout 에서 자주 사용 하 는 속성 은 다음 과 같 습 니 다.Wrap:하위 구성 요소 가 줄 을 바 꿀 수 있 는 지 여부 입 니 다(true 는 줄 을 바 꿀 수 있 습 니 다).Pack:하위 구성 요소 가 원래 크기 를 유지 하 는 지 여부 입 니 다(true 는 원래 크기 를 유지 합 니 다).Justify:하위 구성 요소 가 부모 구성 요소 정보 에 따라 조정 되 는 지 여부 입 니 다.MarginLeft:현재 구성 요소 가 부모 구성 요소 왼쪽 에서 떨 어 진 픽 셀 점 개 수 를 표시 합 니 다.Margin Top:현재 구성 요소 가 부모 구성 요소 의 상단 거 리 를 나타 내 는 픽 셀 점 갯 수 입 니 다.MarginRight:현재 구성 요소 가 부모 구성 요소 오른쪽 에서 떨 어 진 픽 셀 점 개 수 를 표시 합 니 다.MarginBottom:현재 구성 요소 가 부모 구성 요소 아래 에서 떨 어 진 픽 셀 점 개 수 를 표시 합 니 다.Spacing:하위 구성 요소 간 의 간격 픽 셀 갯 수 를 표시 합 니 다.
또한 RowLayout 는 Rowdata 를 통 해 각 하위 구성 요소 의 크기 를 설정 할 수 있 습 니 다.예 를 들 어'button.setLayoutData(new Rowdata(60,60)'는 button 의 크기 를(60,60)로 설정 할 수 있 습 니 다.테스트 코드:
package swt_jface.demo2;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.RowData;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.List;
import org.eclipse.swt.widgets.Shell;
public class RowLayoutSample {
Display display = new Display();
Shell shell = new Shell(display);
public RowLayoutSample() {
RowLayout rowLayout = new RowLayout();
// rowLayout.fill = true;
// rowLayout.justify = true;
// rowLayout.pack = false;
// rowLayout.type = SWT.VERTICAL;
// rowLayout.wrap = false;
shell.setLayout(rowLayout);
Button button1 = new Button(shell, SWT.PUSH);
button1.setText("button1");
button1.setLayoutData(new RowData(100, 35));
List list = new List(shell, SWT.BORDER);
list.add("item 1");
list.add("item 2");
list.add("item 3");
Button button2 = new Button(shell, SWT.PUSH);
button2.setText("button #2");
//shell.setSize(120, 120);
shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
public static void main(String[] args) {
new RowLayoutSample();
}
}
다음 동적(Composite 결합)
package swt_jface.demo2;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.ControlEvent;
import org.eclipse.swt.events.ControlListener;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class Layouting {
Display display = new Display();
Shell shell = new Shell(display);
int count = 0;
public Layouting() {
shell.setLayout(new RowLayout());
final Composite composite = new Composite(shell, SWT.BORDER);
composite.setLayout(new RowLayout());
composite.setBackground(display.getSystemColor(SWT.COLOR_YELLOW));
composite.addControlListener(new ControlListener() {
public void controlMoved(ControlEvent e) {
}
public void controlResized(ControlEvent e) {
System.out.println("Composite resize.");
}
});
Button buttonAdd = new Button(shell, SWT.PUSH);
buttonAdd.setText("Add new button");
buttonAdd.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
Button button = new Button(composite, SWT.PUSH);
button.setText("Button #" + (count++));
composite.layout(true);
composite.pack();
shell.layout(true);
shell.pack(true);
}
});
shell.pack();
//shell.setSize(450, 100);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
public static void main(String[] args) {
new Layouting();
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
SWT(JFace) 인쇄 기능데모 코드는 다음과 같습니다 일반 Main 메뉴에 인쇄 버튼 추가:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.