📄 myselectbox.h
字号:
// MySelectBox.h: interface for the CMySelectBox class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MYSELECTBOX_H__7672F2B3_DAFD_4662_8917_B0EE47E5FFF2__INCLUDED_)
#define AFX_MYSELECTBOX_H__7672F2B3_DAFD_4662_8917_B0EE47E5FFF2__INCLUDED_
#include "MyList.h" // Added by ClassView
#include "MyLabel.h" // Added by ClassView
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CMySelectBox
{
public:
void OnTimer();
void OutRect();
void OnMouseMove(CPoint point);
void OnRButtonDown(CPoint point);
void OnLButtonDown(CPoint point);
void OnLButtonUp(CPoint point);
CRect SelectRect;
void SetListRect();
CWnd *pParentWnd;
CMySelectBox(CWnd *parent,UINT id);
void draw(CDC *pDC);
bool bVisible;
char *cContent;
CMyLabel *label;
CMyList *list;
CMySelectBox();
virtual ~CMySelectBox();
};
#endif // !defined(AFX_MYSELECTBOX_H__7672F2B3_DAFD_4662_8917_B0EE47E5FFF2__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -