⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 staticarray.h

📁 表达式计算器。表达式中只能有圆括号、函数名、运算符、常数与变量。一、变量名的命名规则:1、可以是字符、或字符串 2、不能以数字开头 3、不能夹杂有空格、运算符或标点符号
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -