2010-09-19 76 views

回答

0

MoveWindow()可以用於任何MFC控件。試試這個:

CRect rc; 
slider.GetWindowRect(rc); // Get the slider rectangle in absolute corrdinates 
rc.InflateRect(30, 30);  // Do whatever you want with your rectangle; 
ScreenToClient (rc);   // Convert to dialogs's coordinates 
slider.MoveWindow(rc);  // Move it! 

更新: 對於進一步定製你必須做出一個所有者繪製CListCtrl。你可能需要this article作爲一個良好的開端

+0

movewinow將爲滾動條水平增加大小,但我們如何能增加酒吧的高度,即我想增加滑動條的厚度 – Suri 2010-09-20 10:30:36

+0

檢查更新的答案 – mmonem 2010-09-20 12:54:32