advvariablelist.h
来自「一个PLX教学编译器IDE」· C头文件 代码 · 共 55 行
H
55 行
/////////////////////////////////////////////////////////////////////////////////////////////////
// Author : tuwei //
// ECNU.CS.03 //
// 2006.9 ~ 2006.11 //
// Copyright (C) reserved //
// //
// //
// Function: //
// Show the variable in the memory. //
// //
// Credit: //
// If you use this control in your application please keep the file header in //
// your source or put author's name in your product. //
// //
// //
/////////////////////////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_ADVVARIABLELIST_H__BE828CB0_9544_4010_A10C_2C1583915328__INCLUDED_)
#define AFX_ADVVARIABLELIST_H__BE828CB0_9544_4010_A10C_2C1583915328__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "plxCompiler.h"
class CAdvVariableList : public CVariableList
{
public:
CAdvVariableList();
virtual ~CAdvVariableList();
void SetListTitle();
int AddText(LPCTSTR strVarName,int value);
void Clean();
void ChangeValue(int index,int value);
protected:
int listIndex;
public:
//{{AFX_VIRTUAL(CAdvVariableList)
protected:
virtual void PreSubclassWindow();
//}}AFX_VIRTUAL
protected:
//{{AFX_MSG(CAdvVariableList)
afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor);
afx_msg void OnSize(UINT nType, int cx, int cy);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
#endif // !defined(AFX_ADVVARIABLELIST_H__BE828CB0_9544_4010_A10C_2C1583915328__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?