You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
321 B
C++
23 lines
321 B
C++
#pragma once
|
|
|
|
|
|
// CExtendSliderCtrl
|
|
|
|
class CExtendSliderCtrl : public CSliderCtrl
|
|
{
|
|
DECLARE_DYNAMIC(CExtendSliderCtrl)
|
|
|
|
public:
|
|
CExtendSliderCtrl();
|
|
virtual ~CExtendSliderCtrl();
|
|
|
|
protected:
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
|
|
// 功能:让滑块移动到鼠标点击处
|
|
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
|
|
};
|
|
|
|
|