主题:CSliderCtrl::SetRange()函数的问题
CSliderCtrl::SetRange()
void SetRange(
int nMin,
int nMax,
BOOL bRedraw = FALSE );
这个函数的第三个参数true 和 false有什么区别
msdn的解释是:
bRedraw
Specifies the redraw flag. If this parameter is TRUE, the slider is redrawn after the range is set; otherwise, the slider is not redrawn.
true是重绘,false是不重绘.
但是我在程序中用true和false都试了,好象两者没什么区别.
谁能帮我解释下
void SetRange(
int nMin,
int nMax,
BOOL bRedraw = FALSE );
这个函数的第三个参数true 和 false有什么区别
msdn的解释是:
bRedraw
Specifies the redraw flag. If this parameter is TRUE, the slider is redrawn after the range is set; otherwise, the slider is not redrawn.
true是重绘,false是不重绘.
但是我在程序中用true和false都试了,好象两者没什么区别.
谁能帮我解释下