- 전체
- JAVA 일반
- JAVA 수학
- JAVA 그래픽
- JAVA 자료구조
- JAVA 인공지능
- JAVA 인터넷
- Java Framework
- Java GUI (AWT,SWING,SWT,JFACE)
- SWT and RCP (web RAP/RWT)[eclipse], EMF
Java GUI (AWT,SWING,SWT,JFACE) Getting Controls on a shell : Shell « SWT « Java Tutorial
2015.03.30 16:33
Getting Controls on a shell : Shell « SWT « Java Tutorial
[출처] http://www.java2s.com/Tutorial/Java/0280__SWT/GettingControlsonashell.htm
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class ShellControlsGetting {
public static void main(String[] args) {
Display display = new Display();
final Shell shell = new Shell(display);
shell.setLayout(new FillLayout());
for (int i = 0; i < 20; i++) {
Button button = new Button(shell, SWT.TOGGLE);
button.setText("B" + i);
}
Control[] children = shell.getChildren();
for (int i = 0; i < children.length; i++) {
Control child = children[i];
System.out.println(child);
}
shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}
본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
댓글 0
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
|---|---|---|---|---|
| 7 |
REST with Java (JAX-RS) using Jersey - Tutorial
| 졸리운_곰 | 2015.07.16 | 434 |
| 6 |
Tutorial – REST API design and implementation in Java with Jersey and Spring
| 졸리운_곰 | 2015.07.16 | 830 |
| 5 | 12.2. Using REST in Java | 졸리운_곰 | 2015.07.16 | 230 |
| 4 | JAVA Telnet 프로그램 코드 | 졸리운_곰 | 2015.07.12 | 915 |
| 3 | swt java xulrunner 3.6 캐쉬 비우기 : html 깨짐 | 졸리운_곰 | 2015.04.27 | 339 |
| 2 | JAVA SWT XULRUNNER 브라우저 target=_black 멀티 윈도우 표시 | 졸리운_곰 | 2015.04.20 | 401 |
| 1 | NetStat call and get result text in Java | 졸리운_곰 | 2014.02.25 | 903 |

