📄 mainform.cpp
字号:
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "MainForm.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::BitBtn1Click(TObject *Sender)
{
AnsiString StrInfo="用户基本信息如下:\n用户姓名:";
StrInfo+=this->MaskEdit1->Text;
StrInfo+="\n出生日期:";
StrInfo+=this->MaskEdit2->Text;
StrInfo+="\n电话号码:";
StrInfo+=this->MaskEdit3->Text;
StrInfo+="\n身份证号码:";
StrInfo+=this->MaskEdit4->Text;
StrInfo+="\n通讯地下:";
StrInfo+=this->MaskEdit5->Text;
MessageBox(NULL,StrInfo.c_str(),"用户基本信息",MB_OK);
}
//---------------------------------------------------------------------------
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -