C# - 如果 textbox.text = “hello”,则通知图标

本文关键字:通知 图标 hello 如果 textbox text | 更新日期: 2023-09-27 18:31:40

我想显示一个通知图标,如果对于此代码:

if (textbox.text == "hello");

有人知道我该怎么做吗?

C# - 如果 textbox.text = “hello”,则通知图标

查看此链接

C# 窗体中的通知图标

这段代码对我有用(在单击按钮时设置)

private void button1_Click(object sender, EventArgs e)
    {
        if (textBox1.Text == "hello")
        {
            notifyIcon1.BalloonTipText = "hi";
            notifyIcon1.ShowBalloonTip(100);
        }
    }

请记住向通知图标元素添加图标。

它看起来像这样。

if (textBox1.Text.ToLower() == "hello")
   notifyIcon1.Visible = true;
else
   notifyIcon1.Visible = false;

它显示和隐藏通知图标控件

注意:如果您希望它自动执行或使用方法显式调用它,请将此添加到事件中。