filedowninfo.cpp
来自「vc++编写的界面源代码,对C++爱好者是很发的帮助。」· C++ 代码 · 共 40 行
CPP
40 行
// FileDownInfo.cpp : 实现文件
//
#include "stdafx.h"
#include "WebGet.h"
#include "FileDownInfo.h"
// CFileDownInfo 对话框
IMPLEMENT_DYNAMIC(CFileDownInfo, CPropertyPage)
CFileDownInfo::CFileDownInfo()
: CPropertyPage(CFileDownInfo::IDD)
{
}
CFileDownInfo::~CFileDownInfo()
{
}
void CFileDownInfo::DoDataExchange(CDataExchange* pDX)
{
CPropertyPage::DoDataExchange(pDX);
DDX_Control(pDX, IDC_LIST1, m_ListFileDownInfo);
}
BEGIN_MESSAGE_MAP(CFileDownInfo, CPropertyPage)
ON_WM_SIZE()
END_MESSAGE_MAP()
// CFileDownInfo 消息处理程序
void CFileDownInfo::OnSize(UINT nType, int cx, int cy)
{
CPropertyPage::OnSize(nType, cx, cy);
if(IsWindow(m_ListFileDownInfo.m_hWnd))m_ListFileDownInfo.m_Container.MoveWindow(0,0,cx,cy);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?