清
清风徐来
Unregistered / Unconfirmed
GUEST, unregistred user!
我在Groupbox里添加了两个radiobutton,为什么里面的radiobutton的enabled不能被外部
的时间控制。而我在同一个界面上做几乎相同的Groupbox里添加了两个radiobutton,却可以
被外部事件控制?比如下面的语句(不能被控制的语句)
procedure Ttongji.pxsjClick(Sender: TObject);
begin
if pxsj.Checked then
begin
RadioButton7.Enabled:=true;
RadioButton8.Enabled:=true;
end
else
begin
RadioButton7.Enabled:=false;
RadioButton8.Enabled:=false;
end;
end;
错在什么地方?
的时间控制。而我在同一个界面上做几乎相同的Groupbox里添加了两个radiobutton,却可以
被外部事件控制?比如下面的语句(不能被控制的语句)
procedure Ttongji.pxsjClick(Sender: TObject);
begin
if pxsj.Checked then
begin
RadioButton7.Enabled:=true;
RadioButton8.Enabled:=true;
end
else
begin
RadioButton7.Enabled:=false;
RadioButton8.Enabled:=false;
end;
end;
错在什么地方?