📄 groupparamsdlg.h
字号:
//**************************************************************************
// Description: Dialog to view and modify the group parameters.
// (mainly the update rate and active flag)
//**************************************************************************
#ifndef GroupParams_Dlg
#define GroupParams_Dlg
class CGroupParamsDlg : public CDialog
{
// Construction
public:
CGroupParamsDlg(IUnknown* pGroup, CWnd* pParent = NULL);
// Dialog Data
//{{AFX_DATA(CGroupParamsDlg)
enum { IDD = IDD_GROUP_PARAMS };
BOOL m_active;
float m_deadband;
DWORD m_LCID;
CString m_name;
DWORD m_rate;
long m_timebias;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CGroupParamsDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
OPCGroupStateMgt opcGroup;
OPCHANDLE client, server;
// Generated message map functions
//{{AFX_MSG(CGroupParamsDlg)
virtual BOOL OnInitDialog();
afx_msg void OnApply();
virtual void OnOK();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -