-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c9a468a
commit 5aaf802
Showing
7 changed files
with
73 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// DlgAddColumn.cpp : 实现文件 | ||
// | ||
|
||
#include "stdafx.h" | ||
#include "Edislab Pro.h" | ||
#include "DlgAddColumn.h" | ||
// CDlgAddColumn 对话框 | ||
|
||
IMPLEMENT_DYNAMIC(CDlgAddColumn, CBaseDialog) | ||
|
||
CDlgAddColumn::CDlgAddColumn(CWnd* pParent /*=NULL*/) | ||
: CBaseDialog(CDlgAddColumn::IDD, pParent) | ||
{ | ||
|
||
} | ||
|
||
CDlgAddColumn::~CDlgAddColumn() | ||
{ | ||
} | ||
|
||
void CDlgAddColumn::DoDataExchange(CDataExchange* pDX) | ||
{ | ||
CBaseDialog::DoDataExchange(pDX); | ||
} | ||
|
||
|
||
BEGIN_MESSAGE_MAP(CDlgAddColumn, CBaseDialog) | ||
END_MESSAGE_MAP() | ||
|
||
|
||
// CDlgAddColumn 消息处理程序 | ||
|
||
|
||
BOOL CDlgAddColumn::OnInitDialog() | ||
{ | ||
CBaseDialog::OnInitDialog(); | ||
|
||
// TODO: 在此添加额外的初始化 | ||
|
||
return TRUE; // return TRUE unless you set the focus to a control | ||
// 异常: OCX 属性页应返回 FALSE | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#pragma once | ||
|
||
|
||
// CDlgAddColumn 对话框 | ||
#include "BaseDialog.h" | ||
class CDlgAddColumn : public CBaseDialog | ||
{ | ||
DECLARE_DYNAMIC(CDlgAddColumn) | ||
|
||
public: | ||
CDlgAddColumn(CWnd* pParent = NULL); // 标准构造函数 | ||
virtual ~CDlgAddColumn(); | ||
|
||
// 对话框数据 | ||
enum { IDD = IDD_DLG_ADD_COLUMN }; | ||
|
||
protected: | ||
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持 | ||
|
||
DECLARE_MESSAGE_MAP() | ||
public: | ||
virtual BOOL OnInitDialog(); | ||
}; |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.