sttodaydialog.h
来自「windows ce开发技巧与实例光盘代码」· C头文件 代码 · 共 47 行
H
47 行
/////////////////////////////////////////////////////////////////////////////
// File name: STTodayDialog.h
// Author: Vassili Philippov (vasja@spbteam.com)
// Created: 01 July 2001
// Last changed: 26 July 2001
// Version: 1.0
// Description: This library allows you develop dialog based application
// that works correctly with Today Pocket PC build-in program
// (it's a known bug that dialog based applications created
// with MFC wizards are shown then user starts Today program).
#if !defined(AFX_STTODAYDIALOG_H__CA3C63CB_6E7D_4A70_9527_3548C8F1BFD6__INCLUDED_)
#define AFX_STTODAYDIALOG_H__CA3C63CB_6E7D_4A70_9527_3548C8F1BFD6__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
/////////////////////////////////////////////////////////////////////////////
// STTodayDialog dialog is a base class. Deriving from this class will
// automatically fix good known bug when your dialog is shown instead of
// Today program.
class CSTTodayDialog : public CDialog
{
// Construction
public:
CSTTodayDialog(UINT nIDTemplate, CWnd* pParentWnd = NULL);
//{{AFX_DATA(STTodayDialog)
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(STTodayDialog)
public:
virtual int DoModal();
//}}AFX_VIRTUAL
protected:
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_STTODAYDIALOG_H__CA3C63CB_6E7D_4A70_9527_3548C8F1BFD6__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?