gpt4 book ai didi

java - 如何在SWT中设置ScrolledComposite的最大高度

转载 作者:行者123 更新时间:2023-11-30 06:37:53 25 4
gpt4 key购买 nike

我有一个 ScrolledComposite ,其中有一个按钮,可以在下面“下一行”创建一个新按钮。每次我使用 pack() 调整复合 Material 的高度。

但现在我想设置最大高度,以便从一定大小开始,窗口的高度保持不变,并且我得到一个垂直滚动条。

最佳答案

调用pack()将始终调整控件的大小,以便它可以显示其全部内容。相反,滚动复合 Material 的大小应由其父级的布局管理。这就是滚动复合的全部目的:显示包含的控件并在需要时提供滚动条。

使用setMinSize()来控制何时显示滚动条。下面的示例具有带有单个按钮的滚动组合。按下该按钮将添加另一个按钮。请注意,添加按钮后,将在 updateMinSize() 中重新计算最小尺寸。

public class DynamicScrolledComposite {

public static void main( String[] args ) {
Display display = new Display();
Shell shell = new Shell( display );
shell.setLayout( new FillLayout() );
ScrolledComposite scrolledComposite = new ScrolledComposite( shell, SWT.H_SCROLL | SWT.V_SCROLL );
scrolledComposite.setExpandVertical( true );
scrolledComposite.setExpandHorizontal( true );
scrolledComposite.addListener( SWT.Resize, event -> updateMinSize( scrolledComposite ) );
Composite composite = new Composite( scrolledComposite, SWT.NONE );
composite.setLayout( new GridLayout( 1, false ) );
createButton( composite );
scrolledComposite.setContent( composite );
shell.setSize( 600, 300 );
shell.open();
while( !shell.isDisposed() ) {
if( !display.readAndDispatch() )
display.sleep();
}
display.dispose();
}

private static void updateMinSize( ScrolledComposite scrolledComposite ) {
Rectangle clientArea = scrolledComposite.getClientArea();
clientArea.width -= scrolledComposite.getVerticalBar().getSize().x;
Point minSize = scrolledComposite.getContent().computeSize( clientArea.width, SWT.DEFAULT );
scrolledComposite.setMinSize( minSize );
}

private static void createButton( Composite parent ) {
Button button = new Button( parent, SWT.PUSH );
button.setText( "Add another button" );
button.addListener( SWT.Selection, new Listener() {
@Override
public void handleEvent( Event event ) {
createButton( parent );
ScrolledComposite scrolledComposite = ( ScrolledComposite )button.getParent().getParent();
button.getParent().requestLayout();
updateMinSize( scrolledComposite );
}
} );
}
}

要详细了解 ScrolledComposite 的不同内容管理策略,请参阅此处:http://www.codeaffine.com/2016/03/01/swt-scrolledcomposite/

关于java - 如何在SWT中设置ScrolledComposite的最大高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44904112/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com