stylelist.cpp

来自「一个电视台专用的信息管理软件源代码」· C++ 代码 · 共 41 行

CPP
41
字号
// StyleList.cpp: implementation of the CStyleList class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "tvnews.h"
#include "StyleList.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CStyleList::CStyleList()
{

}

CStyleList::~CStyleList()
{

}
BOOL CStyleList::OnNotify(WPARAM  wParam,  LPARAM  lParam,  LRESULT*  pResult)
{
	 //  TODO:  Add  your  specialized  code  here  and/or  call  the  base  class  
	 NMHEADER*  pNMHeader  =  (NMHEADER*)lParam;  
	 if  (pNMHeader->iItem  ==  0  && ((pNMHeader->hdr.code  ==  HDN_BEGINTRACKW)||(pNMHeader->hdr.code == HDN_DIVIDERDBLCLICKW)))  
	 {  
		*pResult  =  TRUE;  
		return  TRUE;  
	}  
   
	return  CListCtrl::OnNotify(wParam,  lParam,  pResult);  

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?