在 Lazarus 中,如何检查 MenuItem 是否分配了位图?
我编写了一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,找到了:
:)
ok, found it:
:)