📄 dlgground.cpp
字号:
// DlgGround.cpp : 实现文件
//
#include "stdafx.h"
#include "ZhanGuoClient.h"
#include "DlgGround.h"
// CDlgGround 对话框
IMPLEMENT_DYNAMIC(CDlgGround, CDialog)
CDlgGround::CDlgGround(CWnd* pParent /*=NULL*/)
: CDialog(CDlgGround::IDD, pParent)
{
}
CDlgGround::~CDlgGround()
{
}
void CDlgGround::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Control(pDX, IDC_LIST1, m_ListCtrlGround);
}
BEGIN_MESSAGE_MAP(CDlgGround, CDialog)
END_MESSAGE_MAP()
// CDlgGround 消息处理程序
BOOL CDlgGround::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: 在此添加额外的初始化
m_ListCtrlGround.InsertColumn(0,"名称",LVCFMT_LEFT,130);
m_ListCtrlGround.InsertColumn(1,"坐标",LVCFMT_LEFT,80);
return TRUE; // return TRUE unless you set the focus to a control
// 异常: OCX 属性页应返回 FALSE
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -