📄 updatetimezone.h
字号:
#if !defined(AFX_UPDATETIMEZONE_H__886D9B03_2194_4B07_AA2C_3DABA354B277__INCLUDED_)
#define AFX_UPDATETIMEZONE_H__886D9B03_2194_4B07_AA2C_3DABA354B277__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/**
***************************************************************
* 文件名: UpdateTimeZone
* 版 权: Copyright (c) 2006-2020 中兴软件技术(南昌)有限公司
* 创建人: 袁军
* 日 期: 2007/07/05
* 版 本: V1.0
* 描 述: 该类是修改系统时区类的.H文件
* 修改记录:
* 修改人 修改日期 修改描述
*
***************************************************************
*/
/////////////////////////////////////////////////////////////////////////////
// CUpdateTimeZone dialog
class CUpdateTimeZone : public CDialog
{
// Construction
public:
CUpdateTimeZone(CString sysZoneName,CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CUpdateTimeZone)
enum { IDD = IDD_DLG_UPDATE_TIMEZONE };
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CUpdateTimeZone)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CUpdateTimeZone)
virtual BOOL OnInitDialog();
afx_msg void OnBtnOk();
afx_msg void OnBtnNo();
afx_msg void OnBtnInit();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
CListBox m_ListTimeZone;
CButton m_btnOk;
CButton m_btnNo;
CButton m_btnInit;
CString m_strSysZoneName;
//从String Table中将时区名加载列表中
void GetTimeZoneName();
//设置时区
void SetSysTimeZone(CString strTimeZoneName);
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_UPDATETIMEZONE_H__886D9B03_2194_4B07_AA2C_3DABA354B277__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -