如何让MDIChild透明?
我通过处理 OPACITY 属性成功地使普通表单透明。
现在,我想让 MDIChild(加载到 MDIParent 中)透明。这可能吗?我对 MDIChild 应用了相同的技术(如上所述)。但是,没有成功。
是否可以使 MDIChild 透明。以前有人这样做过吗?
任何帮助将不胜感激。 谢谢。
I'd successfully made a normal Form Transparent by handling the OPACITY property.
Now, I want to make an MDIChild (loaded in an MDIParent) transparent. Is that possible? I'd applied the same technique (mentioned above) for the MDIChild. But, was unsucessful.
Is it possible to make the MDIChild tranparent. Does anyone had done that before?
Any hekp will be appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不可以。MDI 子表单不支持透明度。
No. MDI child forms do not support transparency.
您可以使用
Region
属性。You can use
Region
property.您可以尝试将 mdiparent 分配给表单变量,将 mdichild 的 mdiparent 属性设置为 null,然后应用您的技术使其透明
。我不知道是否有效
You May try assigning the mdiparent to a form variable, set the mdichild's mdiparent property to null and then apply your technique to make it transparent
. i dont know if it would work