使文本框透明
我的表单中有一个 TextBox,我想让它透明并显示其后面的 PictureBox 中的图片,但我该如何做到这一点呢?谢谢。
I have a TextBox in my Form that I want to let it be tranparent and show a picture that is in a PictureBox, behind it, but how I can do this? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不太复杂,在 StackOverflow 上进行一些搜索后,我找到了这个答案。
基本上,您需要子类化
TextBox
并在其构造函数中添加适当的样式。最后一步,将其
BackColor
设置为透明。希望有帮助。Not too complex, after some searching on StackOverflow, I found this answer.
Basically, you need to subclass
TextBox
and in its constructor add the appropriate style.Final stpe, set its
BackColor
to Transparent. Hope it helps.