本文介绍了我如何在没有SetScrollInfo的情况下设置滚动条位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想支持XP.SetScrollInfo在XP中表现不佳.
如何在CListCtrl中设置滚动条位置.
我尝试使用
i want to support XP.SetScrollInfo can''t do well in XP.
how can i set the scrollbar positon in CListCtrl.
i try to use
int nHscroll = ctrl.GetScrollPos(SB_HORZ) ;
.......
CSize size ;
size.cx = nHscroll ;
ctrl.Scroll(size)
但实际上,下一次,我得到了正子,这是错误的.
我也想用滚动条移动内容.
我尝试使用功能SetScrollPos.内容不会随滚动条移动.
任何人都可以帮助
but In fact next time, i get the positon, it is wrong.
also i want the content move with the scrollbar.
i try the function SetScrollPos.the content is not move with the scrollbar.
anyone help
推荐答案
这篇关于我如何在没有SetScrollInfo的情况下设置滚动条位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!