是否可以将多行文本框设置为背景图像?

发布于 2024-12-05 20:23:01 字数 35 浏览 1 评论 0原文

我有一个文本框控件(启用多行)。可以为其指定背景图像吗?

I have a textbox control (multi-line enabled). Is that possible to assign it a background image?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

三生殊途 2024-12-12 20:23:01

我假设这是一个 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.

何以畏孤独 2024-12-12 20:23:01

这是有可能的。只需将图像位置添加到文本框样式中即可:

<asp:TextBox id="TextBox1" runat="server" style="background-image: url( images/myTextboxImage.jpg ); border: none;" />

编辑:正如 Rob 在他的回答中指出的那样:这仅适用于您在网络上执行此操作的情况。

It's possible. Just add the image location to the text box styling:

<asp:TextBox id="TextBox1" runat="server" style="background-image: url( images/myTextboxImage.jpg ); border: none;" />

EDIT: As Rob pointed out in his answer: this is only if you're doing it on the web.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文