cspin.hpp
来自「bt848,bt878 a采集卡的探测」· HPP 代码 · 共 15 行
HPP
15 行
#ifndef _CSPIN_HPP
#define _CSPIN_HPP
#include "CWnd.hpp"
class CSpin : public CWnd {
public:
// Constructors
CSpin() {}
CSpin(CWnd& father,int nID) : CWnd(father,nID) {}
// Useful fns
void SetRange(const INT Min,const INT Max) { SendMessage(UDM_SETRANGE,(WPARAM)0,(LPARAM)MAKELONG(Max, Min)); }
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?