Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-swt-dev] How to controll scrolling in ScrollPane

Hi,
 
How can I control the scroll behaviour of a ScrollPane? For example, I want to control how components in the ScrollPane layouts everytime user scrolls. What can I do?
 
I create my ScrollPane like this:

ScrollPane scrollpane = new ScrollPane();

pane = new FreeformLayer();

pane.setLayoutManager(new FreeformLayout());

setLayoutManager(new StackLayout());

add(scrollpane);

scrollpane.setViewport(new FreeformViewport());

 


Back to the top