staticarray.h
来自「表达式计算器。表达式中只能有圆括号、函数名、运算符、常数与变量。一、变量名的命名」· C头文件 代码 · 共 31 行
H
31 行
// StaticArray.h: interface for the CStaticArray class.
//
//////////////////////////////////////////////////////////////////////
#include "StringResolution.h"
#if !defined(AFX_STATICARRAY_H__29D4BCD3_35CC_476E_A5A6_B2107D8C6E75__INCLUDED_)
#define AFX_STATICARRAY_H__29D4BCD3_35CC_476E_A5A6_B2107D8C6E75__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CStaticArray
{
public:
int getHeight();
int getHeightA();
void Move(int x,int y);
CStaticArray();
virtual ~CStaticArray();
BOOL desroy();
BOOL draw();
BOOL Create(CPoint point,CWnd* pParentWnd,int width,int height,CStringResolution* formula,DWORD dwStyle=SS_RIGHT);
protected:
CPtrArray m_StaticArray;
CPoint m_Topleft;
int m_width,m_height;
};
#endif // !defined(AFX_STATICARRAY_H__29D4BCD3_35CC_476E_A5A6_B2107D8C6E75__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?