📄 sortiddlg.h
字号:
// SortIDDlg.h : header file
//
#if !defined(AFX_SORTIDDLG_H__09B2B44A_EE54_4ACD_BAFF_E3D40E733308__INCLUDED_)
#define AFX_SORTIDDLG_H__09B2B44A_EE54_4ACD_BAFF_E3D40E733308__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/////////////////////////////////////////////////////////////////////////////
// CSortIDDlg dialog
//缓冲区用来存放从文件中读出的一行中分离出来的资源ID
typedef char PARSEDID[50];
class CSortIDDlg : public CDialog
{
// Construction
public:
CSortIDDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CSortIDDlg)
enum { IDD = IDD_DIALOG_SORTID };
UINT m_nStartResourceID;
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSortIDDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
//{{AFX_MSG(CSortIDDlg)
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnButtonOpen();
afx_msg void OnTimer(UINT nIDEvent);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
PARSEDID m_lineData[5000];
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_SORTIDDLG_H__09B2B44A_EE54_4ACD_BAFF_E3D40E733308__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -