labelEdit获取值问题
如题,主窗体内创建动态窗体,
void __fastcall TFrmMain::MYCClick(TObject *Sender)
{
TFrmTest *frmTest=new TFrmTest(this);
try
{
frmTest->ShowModal();
delete frmTest;
}
catch(Exception &exception)
{
delete frmTest;
Application->ShowException(&exception);
}
}
void TTest ::GetParameter(struct PlanModels &Result)
{
try{
Result.n=StrToInt(FrmTest->LEdit_n->Text);
//---
//问题:LEdit_n->Text在程序设置时默认text值为3,为何输入值在程序运行后,人工在LEdit_n输入4后,
//为何Result.n依旧===3,不是人工输入的4
}
catch(...)
{ throw;}
}