📄 fixsplitterwnd.h
字号:
// FixSplitterWnd.h: interface for the CFixSplitterWnd class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_FIXSPLITTERWND_H__42901F49_23D1_477F_A744_D1C326BA807C__INCLUDED_)
#define AFX_FIXSPLITTERWND_H__42901F49_23D1_477F_A744_D1C326BA807C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CFixSplitterWnd : public CSplitterWnd
{
public:
CFixSplitterWnd(BOOL bLocked = TRUE);
virtual ~CFixSplitterWnd();
public:
BOOL m_bLocked;
void DoLock(){m_bLocked = TRUE;};
void UnLock(){m_bLocked = FALSE;};
void InvertLock(){m_bLocked = !m_bLocked;};
protected:
//{{AFX_MSG(CFixSplitterWnd)
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#endif // !defined(AFX_FIXSPLITTERWND_H__42901F49_23D1_477F_A744_D1C326BA807C__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -