是否可以将多行文本框设置为背景图像?
我有一个文本框控件(启用多行)。可以为其指定背景图像吗?
I have a textbox control (multi-line enabled). Is that possible to assign it a background image?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设这是一个 WinForms 应用程序?
没有“内置”方法可以做到这一点。您可以重写控件绘制方法(onPaintBackground - 我相信)并自己绘制图像。
如果它是基于 Web 或 WPF - 那么您很幸运。
I'm assuming this is a WinForms application?
There is no 'built-in' way of doing this. You can override the controls paint method (onPaintBackground - I believe) and draw the image yourself.
If it's Web based or WPF - you're in luck.
这是有可能的。只需将图像位置添加到文本框样式中即可:
编辑:正如 Rob 在他的回答中指出的那样:这仅适用于您在网络上执行此操作的情况。
It's possible. Just add the image location to the text box styling:
EDIT: As Rob pointed out in his answer: this is only if you're doing it on the web.