ibutton.h
来自「fruitwar and engine」· C头文件 代码 · 共 19 行
H
19 行
#ifndef IBUTTON_H_2_18_2004_
#define IBUTTON_H_2_18_2004_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class IButton
{
public:
virtual ~IButton( void );
virtual void AddRef( void );
virtual bool Release( void );
//设置窗口文字(不同的控件,结果不同)
virtual void SetWindowText( const char* a_strText );
//设置可视属性
virtual void SetVisable( bool a_bIsVisable );
};
#endif //IBUTTON_H_2_18_2004_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?