使用 Delphi 5 自动检查 TMenuItem

发布于 2024-07-24 14:43:57 字数 179 浏览 5 评论 0原文

创建自动管理其选中属性的自定义 TMenuItem 的正确方法是什么。 请记住,一旦有人会:

myHelloItem.OnClick := helloword;

那么行为就会丢失...

在 Delphi 7 中如何实现这一点?

问候,

What is the proper way to create a custom TMenuItem which auto manage his checked property.
Remember that once someone will:

myHelloItem.OnClick := helloword;

Then the behavior is lost...

How is that accomplished in Delphi 7?

regards,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

好菇凉咱不稀罕他 2024-07-31 14:43:57

两个选项:

  1. 您有一个 AutoCheck 属性,使每次单击都会切换该菜单项的复选标记,而不管 OnClick 行为如何(尽管我相信 OnClick 实现可以覆盖 AutoCheck)。 然而它限制了功能。
  2. 您可以继承TMenuItem并在Click方法中实现您想要的行为,即调用“OnClick”的方法

Two options:

  1. You have an AutoCheck property that makes every click toggle the check-mark for that menu item, regardless of the OnClick behavior (although I believe the OnClick implementation can override AutoCheck). Nevertheless it limits functionality.
  2. You can inherit TMenuItem and implement your desired behavior in the Click method, the one that calls "OnClick"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文