如何测试 TImage 是否分配有图形?
我的程序中的表单上有一个 TImage 组件。
在某些情况下,程序必须测试:
如果“有一个图像分配给 TImage 组件的图片属性”,那么...
我该怎么做?
There's a TImage component on a form in my program.
In some situation, the program must test:
If "there is an image assigned to the picture property of the TImage component" then ...
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果使用位图,您还可以执行以下操作:
If working with bitmaps, you can also do this:
迟到总比不到好!
正确的方法是:
if Assigned(Image1.Picture.Graphic) then ...
Better late than never!
The right way is:
if Assigned(Image1.Picture.Graphic) then ...
你没有说,但我假设你在谈论 Delphi。
可以通过测试来检查TImage控件中是否有位图:
You don't say, but I'll assume you're talking about Delphi.
You can check whether there's a bitmap in the TImage control by testing: