📄 winnetstatview.h
字号:
// WinNetStatView.h : interface of the CWinNetStatView class
//
#pragma once
#include "afxwin.h"
class CWinNetStatView : public CFormView
{
protected: // create from serialization only
CWinNetStatView();
DECLARE_DYNCREATE(CWinNetStatView)
public:
enum{ IDD = IDD_WINNETSTAT_FORM };
// Attributes
public:
CWinNetStatDoc* GetDocument() const;
// Operations
public:
// Overrides
public:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual void OnInitialUpdate(); // called first time after construct
// Implementation
public:
virtual ~CWinNetStatView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnClickedTcpstats();
CEdit m_TextOutput;
afx_msg void OnBnClickedUdptats();
afx_msg void OnBnClickedIpstats();
afx_msg void OnBnClickedNwParams();
afx_msg void OnBnClickedAdapterInfo();
};
#ifndef _DEBUG // debug version in View.cpp
inline CWinNetStatDoc* CWinNetStatView::GetDocument() const
{ return reinterpret_cast<CWinNetStatDoc*>(m_pDocument); }
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -