You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
650 B
C++

#pragma once
#include "afxwin.h"
#include "SFillPar.h"
class CDlgFill : public CDialogEx
{
DECLARE_DYNAMIC(CDlgFill)
public:
CDlgFill(SFillPar FontPar,CWnd* pParent = NULL); // 标准构造函数
virtual ~CDlgFill();
// 对话框数据
enum { IDD = IDD_FILL_DLG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
afx_msg void OnBnClickedOk();
virtual BOOL OnInitDialog();
DECLARE_MESSAGE_MAP()
private:
void AddModifiCmd();
bool CheckInput();
private:
SFillPar m_OldPar;
SFillPar m_NewPar;
public:
afx_msg void OnBnClickedDelFill();
};