2024-12-21 10:04:04 +08:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
#include "Define.h"
|
|
|
|
|
|
#include "ServiceInfo.h"
|
|
|
|
|
|
#include "SubControlBaseView.h"
|
|
|
|
|
|
#include "OXGridList.h"
|
|
|
|
|
|
#include "OXGridEdit.h"
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// CSubControlWorldUserLimitView <20><>ȭ <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
|
|
|
|
|
|
|
|
|
|
|
|
class CSubControlWorldUserLimitView : public CSubControlBaseView
|
|
|
|
|
|
{
|
|
|
|
|
|
DECLARE_DYNAMIC(CSubControlWorldUserLimitView)
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
CSubControlWorldUserLimitView(CWnd* pParent = NULL); // ǥ<><C7A5> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
|
|
|
|
|
|
virtual ~CSubControlWorldUserLimitView();
|
|
|
|
|
|
|
|
|
|
|
|
// <20><>ȭ <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
|
|
|
|
|
|
enum { IDD = IDD_CTRLFRM_WORLDUSERLIMIT };
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
void UpdateData();
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
|
|
|
|
|
|
|
|
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
|
|
protected:
|
|
|
|
|
|
virtual void OnOK();
|
|
|
|
|
|
virtual void OnCancel();
|
|
|
|
|
|
public:
|
|
|
|
|
|
virtual BOOL OnInitDialog();
|
|
|
|
|
|
virtual BOOL PreTranslateMessage(MSG* pMsg);
|
|
|
|
|
|
afx_msg void OnPaint();
|
|
|
|
|
|
afx_msg void OnSize(UINT nType, int cx, int cy);
|
|
|
|
|
|
afx_msg void OnDestroy();
|
|
|
|
|
|
};
|