在 Lazarus 中,如何检查 MenuItem 是否分配了位图?

发布于 2024-08-20 21:02:52 字数 225 浏览 5 评论 0原文

我编写了一些 Lazarus 代码,循环遍历主菜单的菜单项,并需要查看是否为每个菜单项分配了位图。

我尝试检查,

if Assigned (MenuItem.Bitmap) then...

但这总是返回 true,无论是否分配了位图。

猜测如果没有分配实际图像,位图将被填充为空位图。

那么如何检查图像是否有效或为空呢?

I wrote some Lazarus code that loops through the menu items of the main menu and needs to see whether there's a bitmap assigned to each menu item.

I tried to check with

if Assigned (MenuItem.Bitmap) then...

but this always returns true, whether a bitmap is assigned or not.

Guess the bitmap will be filled with an empty one if there's no actual image assigned.

So how to check whether the image is valid or empty?

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

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

发布评论

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

评论(1

感性不性感 2024-08-27 21:02:52

好的,找到了:

if not MenuItem.Bitmap.Empty then ...

:)

ok, found it:

if not MenuItem.Bitmap.Empty then ...

:)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文