scannerdlg.h
来自「windows mobile 6 可以搜索无线网信号的sourcecode」· C头文件 代码 · 共 48 行
H
48 行
#pragma once
#include "afxcmn.h"
#include "ColoredDlg.h"
#include "ListCtrlEx.h"
// CWifiDevicesDlg dialog
class CScannerDlg : public CColoredDlg
{
DECLARE_DYNAMIC(CScannerDlg)
public:
CScannerDlg(CWnd* pParent = NULL); // standard constructor
virtual ~CScannerDlg();
void UpdateList();
void SetListFont(int iFontSize);
// Dialog Data
enum { IDD = IDD_SCANNER_DLG };
protected:
void UpdateItem(DisplayInfo nfo);
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual BOOL OnInitDialog();
virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
afx_msg void OnPaint();
afx_msg void OnPopupGolarge();
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
DECLARE_MESSAGE_MAP()
bool GetRow(DWORD ID, DisplayInfo &di);
void ApplyListFont();
bool m_bListFontApplied;
DisplayInfo m_diTmp;
int m_iListFontSize;
bool m_bLarge;
int m_iLargeID;
CListCtrlEx m_list;
CFont m_listfont;
CString m_numactive;
CString m_rb_static;
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?