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

📄 cmessagebox.cpp

📁 AA制消费管理系统(简易型) 实现账户信息
💻 CPP
字号:
#include "link.h"
/***********************************************************************
消息提示函数
***********************************************************************/
void CMessageBox::ShowMessage(string _message)
{
	int x,y;
	CFormBase::WhereXY(&x,&y);
	CFormBase::GotoXY(1,24);
	for (int i=0;i<3;i++)
	{
		for (int j=1;j<79;j++)
		{
			cout<<" ";cout.flush();
		}
		CFormBase::GotoXY(1,24+i);
	}
	CFormBase::GotoXY(2,25);
	cout<<_message;cout.flush();
	CFormBase::GotoXY(x,y);
}
/***********************************************************************
清空行函数
***********************************************************************/
void CMessageBox::Clear(int _x,int _y)
{
	int x,y;
	CFormBase::WhereXY(&x,&y);
	CFormBase::GotoXY(_x,y);
	for (int i=0;i<_y;i++)
	{
		cout<<" ";cout.flush();
	}
	CFormBase::GotoXY(x,y);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -