?? 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_)
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -