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.
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Carriage Return (ASCII chr 13) is missing from tex
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
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.