我正致力于使用JAVA SWT创建UI。
有一件事让我对使用ScrolledComposite感到困惑。 为什么我的代码在没有设置复合的MinSize的情况下不显示滚动?
有人能解释一下setMinSize在ScrolledComposite中的作用吗?
为什么我们不能使用" setSize" 而不是" setMinSize" ?
以下是我的代码。
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.ScrolledComposite;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
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 MyPractice {
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
shell.setLayout(new GridLayout());
final ScrolledComposite sc = new ScrolledComposite(shell, SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL);
sc.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
Composite c = new Composite(sc, SWT.NONE);
c.setLayout(new GridLayout(7, true));
c.setBackground(new Color(display, 0,255,0));
for (int i = 0; i < 200; i++) {
Button b = new Button(c, SWT.PUSH);
b.setText("Button " + i);
}
sc.setContent(c);
sc.setExpandHorizontal(true);
sc.setExpandVertical(true);
//*****Why is this code necessary to get Scroll on UI?
sc.setMinSize(c.computeSize(SWT.DEFAULT, SWT.DEFAULT));
//Why can't we use "setSize" insetead of setMinSize? setSize does not show scroll.
//sc.setSize(c.computeSize(SWT.DEFAULT, SWT.DEFAULT));
shell.setSize(300, 500);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}
答案 0 :(得分:3)
setSize()
和setMinSize()
是两个非常不同的功能。 Control#setSize()
设置Control
的实际大小,ScrolledComposite#setMinSize()
特定于ScrolledComposite
,并告诉它开始显示滚动条的大小:
指定
ScrolledComposite
将使用水平滚动条开始滚动内容的最小宽度和高度。仅当设置了setExpandHorizontal(true)
和setExpandVertical(true)
时,此值才有意义。
滚动复合的最小尺寸将取决于孩子的大小。