单击按钮时,我想更改文本框的字体样式。为此,我的代码如下,没关系;
protected void Button1_Click(object sender, System.EventArgs e)
{
TextBox1.Font.Size = FontUnit.XLarge;
TextBox1.ForeColor = System.Drawing.Color.Crimson;
TextBox1.BackColor = System.Drawing.Color.Snow;
TextBox1.BorderColor = System.Drawing.Color.HotPink;
}
但是我可以在我选择文本框中写入的地方做它只更改那部分。例如 textbox1.Text="Computer Programs" 并且用户只选择 textbox1 的“计算机”部分。只有“计算机”部分必须更改.