📄 mystatusbar.h
字号:
#if !defined(AFX_BITMAPSTATUSBAR_H__9320E697_4641_4916_B100_451BD78A7F5F__INCLUDED_)
#define AFX_BITMAPSTATUSBAR_H__9320E697_4641_4916_B100_451BD78A7F5F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// MyStatusBar.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CMyStatusBar window
class CMyStatusBar : public CStatusBar
{
// Construction
public:
CMyStatusBar();
//在自定义工具条中添加的AVI播放控件
CAnimateCtrl m_AnimateCtrl;
CComboBox m_ComboBox;
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMyStatusBar)
//}}AFX_VIRTUAL
// Implementation
public:
//虚拟击键操作函数
void SimulateHitKey(int nVirtualKey);
//对组合列表框控件选择内容发生变化时的响应函数
void OnSelchangeCombo();
virtual ~CMyStatusBar();
// Generated message map functions
protected:
//{{AFX_MSG(CMyStatusBar)
//对工具条上的鼠标左、右击信息进行响应
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnSize(UINT nType, int cx, int cy);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_BITMAPSTATUSBAR_H__9320E697_4641_4916_B100_451BD78A7F5F__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -