选定的值出现在网格视图中

发布于 2024-12-09 09:01:08 字数 369 浏览 1 评论 0原文

使用 VB.Net(Windows 应用程序)

Gridview 和文本框

当我在文本框中输入数字或字符时,该值应该在 gridview 中闪烁。

例如,

GridView 有

 ID Name

001 Jagan
002 Raman
003 Antony
........

. 当输入以下数据时, Textbox1.text = 01(然后ID:001应该在Gridview中闪烁), Textbox1.text =Raman(然后名称:Raman 应在 Gridview 中闪烁)

我该怎么做?

需要 VB.Net 代码。请帮忙。

Using VB.Net (Windows Application)

Gridview and Textbox

When I enter the number or character in the textbox, that value should blink in the gridview.

For Example,

GridView has

 ID Name

001 Jagan
002 Raman
003 Antony
........

.
When the following data is entered,
Textbox1.text = 01 (then ID:001 should Blink in Gridview),
Textbox1.text =Raman (then Name: Raman should Blink in Gridview)

How can I do this?

Need VB.Net Code. Please help.

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

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

发布评论

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

评论(1

踏雪无痕 2024-12-16 09:01:08

这非常简单。将计时器添加到您的表单中,将其间隔设置为 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;
        }

    }                  

您可以应用更具体的设计风格,这将使文本框的文本闪烁。

It's very simple.Add timer to your form,sets its interval to 100 millisecond and in timer1_Tick event toggles textbox appearance as below.

    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;
        }

    }                  

You can apply more specific designing style which would blink your textbox's text.

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