要自己写代码处理:完整代码向我要 [email protected] QQ56299927composite.verticalBar.addSelectionListener(new OnVScrollSelectionAdapter());
class OnVScrollSelectionAdapter implements SelectionListener
{
public void widgetSelected(SelectionEvent e)
{
CGridCtrl cl=((CGridCtrl)((ScrollBar)e.getSource()).getParent());
cl.onVScrollSelection(e);
}
public void widgetDefaultSelected(SelectionEvent e)
{

}
}
protected void onVScrollSelection(SelectionEvent e)
{

onPaint();//利用paint事件处理视图区更新
}