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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# pragma once
# include "Resource.h"
// CSaveLineEditSetting 对话框
class CSaveLineEditSetting : public CBCGPDialog
{
DECLARE_DYNAMIC ( CSaveLineEditSetting )
public :
CSaveLineEditSetting ( CWnd * pParent = NULL ) ; // 标准构造函数
virtual ~ CSaveLineEditSetting ( ) ;
int GetSaveStatus ( ) ; //获取保存状态
// 对话框数据
enum { IDD = IDD_DIALOG_EDITINGSAVE } ;
protected :
virtual void DoDataExchange ( CDataExchange * pDX ) ; // DDX/DDV 支持
DECLARE_MESSAGE_MAP ( )
public :
afx_msg void OnBnClickedBtnSaveedit ( ) ;
afx_msg void OnBnClickedBtnContinueedit ( ) ;
afx_msg void OnBnClickedBtnCanceledit ( ) ;
private :
int saveStatus ; //保存状态,-1为不保存, 0为继续编辑, 1为保存
} ;