|
楼主 |
发表于 2020-1-26 23:00:02
|
显示全部楼层
谢谢前辈指导
只是我是用PageControl而不是用TabControl的
以及按钮为RadioButton
所以我改成
void __fastcall TForm1::PageControl1Change(TObject *Sender,bool &AllowChange)
{
if (!RadioButton1->Checked)
{
AllowChange = false;
}
}
但却发生错误:
[C++ Error] Unit1.cpp(32): E2316 '_fastcall TForm1::PageControl1Change(TObject *,bool &)' is not a member of 'TForm1'
请问这是那里出问题呢?
|
|