- 전체
- 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) SWT 스크롤 ScrolledComposite
2015.05.03 14:59
SWT 스크롤 ScrolledComposite

//Send questions, comments, bug reports, etc. to the authors: //Rob Warner (rwarner@interspatial.com) //Robert Harris (rbrt_harris@yahoo.com) import org.eclipse.swt.SWT; import org.eclipse.swt.custom.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; /** * This class demonstrates ScrolledComposite */ public class ScrolledCompositeTest { public void run() { Display display = new Display(); Shell shell = new Shell(display); createContents(shell); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } private void createContents(Composite parent) { parent.setLayout(new FillLayout()); // Create the ScrolledComposite to scroll horizontally and vertically ScrolledComposite sc = new ScrolledComposite(parent, SWT.H_SCROLL | SWT.V_SCROLL); // Create a child composite to hold the controls Composite child = new Composite(sc, SWT.NONE); child.setLayout(new FillLayout()); // Create the buttons new Button(child, SWT.PUSH).setText("One"); new Button(child, SWT.PUSH).setText("Two"); /* * // Set the absolute size of the child child.setSize(400, 400); */ // Set the child as the scrolled content of the ScrolledComposite sc.setContent(child); // Set the minimum size sc.setMinSize(400, 400); // Expand both horizontally and vertically sc.setExpandHorizontal(true); sc.setExpandVertical(true); } public static void main(String[] args) { new ScrolledCompositeTest().run(); } }
| sc.setMinSize(400, 400); 이 설정이 중요 |
[출처] http://www.java2s.com/Code/Java/SWT-JFace-Eclipse/DemonstratesScrolledComposite.htm
본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
댓글 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 |

