我有这个多行文本框。我想在文本框的左上角添加一个 ImageButton。
我看到了一些方法,但它们似乎都没有太大的帮助。
将 ImageButton 添加到该多行文本框的最佳解决方案是什么?
这是代码:
HTML:
<p>
<asp:TextBox ID="txtDescription" Width="98%" Height="300px" style="overflow:auto" BorderStyle="Outset" BorderWidth="2px"
runat="server" Visible="false" TextMode="MultiLine" ReadOnly="true" ></asp:TextBox>
</p>
代码背后:
protected void SetTextBox(int levelID)
{
switch (levelID)
{
case 1: // = not started yet
txtDescription.CssClass = "textBoxWhite";
break;
case 2: //= in proccess
txtDescription.CssClass = "textBoxBlue";
break;
case 3: //= completed
txtDescription.CssClass = "textBoxRed";
break;
}
}
CSS:
.textBoxRed
{
background: rgba(255, 181, 181, 0.5);
}
.textBoxBlue
{
background: rgba(181, 181, 255, 0.5);
}
.textBoxWhite
{
background: rgba(255, 255, 255, 0.5);
}
示例:参见“文本框中的 图像”文本框中的图像