TabSheet不显示图像
如果我将其放入选项卡中,是否有任何原因导致图像不显示?仅显示白色背景。
Is there any reason why images are not being displayed if I place it into tabsheet? Just shows white background instead.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您在运行时创建它们,请务必设置它们的 Parent 属性。父级负责提供绘画上下文。
没有父级=没有显示任何内容。
If you are creating them at run-time, be sure to set their Parent property. The parent is responsible for providing the painting context.
No parent = nothing displayed.
我也遇到过类似的问题,图像未显示(前段时间),我通过添加面板然后添加图像来修复它。 (我真的不明白有什么区别,但它当时有效)
I have had a possibly similar problem with images not showing (some time ago) and I fixed it by adding a panel and then image. (I don't really get the difference, but it worked then)
什么类型的图像(bmp 或 jpeg)?如果您使用 jpg,请在代码中包含 jpeg 单元。
What type of images (bmp or jpeg)? Include jpeg unit in your code if you use jpg's.