使用VB.Net(Windows应用程序)
Gridview和文本框
当我在文本框中输入数字或字符时,该值应在gridview中闪烁。
例如,
GridView
ID Name
001 Jagan
002 Raman
003 Antony
........
。 输入以下数据时 Textbox1.text = 01(然后ID:001应该在Gridview中闪烁), Textbox1.text =拉曼(然后名称:拉曼应该在Gridview中闪烁)
我该怎么做?
需要VB.Net代码。请帮忙。
答案 0 :(得分:0)
这很简单。将定时器添加到表单,将其间隔设置为100毫秒,并在timer1_Tick事件中切换文本框外观,如下所示。
int flag = 1;
private void timer1_Tick(object sender, EventArgs e)
{
if (flag == 1)
{
textBox1.ForeColor = Color.Blue;
textBox1.Font = new Font("Tahoma", 9, FontStyle.Bold);
textBox1.BackColor = Color.WhiteSmoke;
flag = 2;
}
else
{
textBox1.ForeColor = Color.Black;
textBox1.Font = new Font("Tahoma", 9, FontStyle.Regular);
textBox1.BackColor = Color.White;
flag = 1;
}
}
您可以应用更具体的设计风格,这会使文本框的文本闪烁。