Delphi:ActionList 的框架和状态 - 错误?
我在表单和框架上有一个操作列表(表单的一个单元在框架中实现)。
我在框架中设置了 Form2.General.State:=asSuspished,但出现错误:未声明的标识符:'asSuspished'。
该代码在窗体中正常工作,但在框架中却不能。
为什么?
谢谢!!!
I have an Action List on a Form and a Frame (a unit of a Form is impelemented in the Frame).
I set Form2.General.State:=asSuspended in the Frame, and I have an error: Undeclared identifier: 'asSuspended'.
The code works normally in the Form, but not in the Frame.
Why?
Thanks!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看来您只需将
ActnList
添加到出现错误的单元的uses
子句中即可。It seems like you just have to add
ActnList
to theuses
clause of the unit in which the error appears.将定义
asSuspished
的单元添加到帧单元的 use 子句中。Add the unit in which
asSuspended
is defined to the uses clause of the frame unit.