Click here to Skip to main content
Licence CPOL
First Posted 8 Mar 2005
Views 46,483
Downloads 1,384
Bookmarked 20 times

Add XP Style Scrollbar to listctrl, listbox and so on (by self-draw)

By | 8 Mar 2005 | Article
Implement XP style scrollbar by self-draw
Sample Image - self-draw_XPScrollbar.jpg

Introduction

One of my recent projects needed to beautify UI, but when the app does not run on WinXP, the intrinsic scrollbar of common controls is too ugly. So I use self-draw CScrollWnd instead.

At present, only VSCROLL is supported. HSCROLL will be added when I have time to do it, and any help will be appreciated (you can add it by yourself).

Trick

The biggest problem to implement a scrollbar is to locate thumb properly. To solve this problem, I have used many ways, but at the end, a very convenient and reliable method was found: step by step approach.

Code

void CScrollWnd::MoveThumb(CPoint ptOffset)

{ if(!IsMouseInRange(WM_VSCROLL))
  return;
 CPoint ptCursor;
 GetCursorPos(&ptCursor);
 ScreenToClient(&ptCursor); 

 CPoint ptCurPos = ptCursor;
 int nMaxTimes=200;

 int nTimes = 0;
 int nStep = 1;//accuracy

 CPoint ptNewPos = ptOffset + GetRect(HT_THUMB).CenterPoint();
 while(abs(ptNewPos.y - ptCurPos.y)>nStep && nTimes++<nMaxTimes)
 {
  BOOL bDirDown = ptCurPos.y>ptNewPos.y;
  NotifyBuddy(WM_VSCROLL,MAKEWPARAM(bDirDown?SB_LINEDOWN:SB_LINEUP,0));
  
  UpdateScrollBar();
  ptNewPos = ptOffset + GetRect(HT_THUMB).CenterPoint();
 }
}

See the attached source code for more details.

Sorry for my poor English. My mother tongue is Chinese. :)

History

  • 8th March, 2005: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

xwp

Software Developer
www.MayGion.com
China China

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmemberdlsyaim16:58 6 Nov '11  
GeneralCombbox Pinmemberlroels20:48 20 Aug '07  
Generalsocksv5 specification, details Pinmemberavinu21:56 28 Jul '07  
GeneralError in Zip File PinmemberSrirama Kalyan4:46 7 May '07  
GeneralRe: Error in Zip File PinmemberSvetoslav Chekanov21:27 9 May '07  
GeneralError in ZIP file PinmemberConradB19:38 5 Oct '06  
GeneralGood Pinmembervcfans15:02 23 Mar '06  
GeneralCan't unzip the zip file Pinmemberchinni_uday20:10 1 Mar '06  
GeneralFailed to add HScroll PinmemberSandeep A.C0:15 15 Feb '06  
GeneralUnable to Unzip PinmemberK.Senthil Babu20:59 14 Jul '05  
GeneralRe: Unable to Unzip PinmemberckTan8118:59 28 Jul '05  
Generalcant download PinmemberSam Chris2:58 5 May '05  
GeneralRedraw bug on Win2000 PinmemberKochise21:19 8 Mar '05  
GeneralRe: Redraw bug on Win2000 Pinmemberxwp14:35 9 Mar '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 8 Mar 2005
Article Copyright 2005 by xwp
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid