C#实现动态图标闪烁显示的示例代码

 更新时间:2022年12月14日 11:38:54   作者:芝麻粒儿  
这篇文章主要为大家详细介绍了如何利用C#实现动态图标闪烁显示的功能,文中的示例代码讲解详细,对我们学习C#有一定的帮助,感兴趣的小伙伴可以了解一下

实践过程

效果

代码

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }
    private Thread td;
    private TcpListener tcpListener;
    string message="";
    private void Form1_Load(object sender, EventArgs e)
    {
        td = new Thread(new ThreadStart(this.StartListen));
        td.Start();
    }

    private void StartListen()
    {
        tcpListener = new TcpListener(888);
        tcpListener.Start();
        while (true)
        {
            TcpClient tclient = tcpListener.AcceptTcpClient();  //接受连接请求
            NetworkStream nstream = tclient.GetStream();        //获取数据流
            byte[] mbyte = new byte[1024];                      //建立缓存
            int i = nstream.Read(mbyte, 0, mbyte.Length);       //将数据流写入缓存
            message = Encoding.Default.GetString(mbyte, 0, i);
        }
    }

    private void Form1_FormClosed(object sender, FormClosedEventArgs e)
    {
        if (this.tcpListener != null)
        {
            tcpListener.Stop();
        }
        if (td != null)
        {
            if (td.ThreadState == ThreadState.Running)
            {
                td.Abort();
            }
        }
    }

    private void button1_Click(object sender, EventArgs e)
    {
        try
        {
            IPAddress[] ip = Dns.GetHostAddresses(Dns.GetHostName());
            string message ="你好兄弟";
            TcpClient client = new TcpClient(txtAdd.Text, 888);
            NetworkStream netstream = client.GetStream();
            StreamWriter wstream = new StreamWriter(netstream, Encoding.Default);
            wstream.Write(message);
            wstream.Flush();
            wstream.Close();
            client.Close();
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }
    }

    bool k = true;
    private void timer1_Tick(object sender, EventArgs e)
    {
        if (message.Length > 0)
        {
            if (k)
            {
                notifyIcon1.Icon = Properties.Resources._1;
                k = false;
            }
            else
            {
                notifyIcon1.Icon = Properties.Resources._2;
                k = true;
            }
        }
    }

    private void button2_Click(object sender, EventArgs e)
    {
        message = "";
        notifyIcon1.Icon = Properties.Resources._3;
    }
}
partial class Form1
{
    /// <summary>
    /// 必需的设计器变量。
    /// </summary>
    private System.ComponentModel.IContainer components = null;

    /// <summary>
    /// 清理所有正在使用的资源。
    /// </summary>
    /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
    protected override void Dispose(bool disposing)
    {
        if (disposing && (components != null))
        {
            components.Dispose();
        }
        base.Dispose(disposing);
    }

    #region Windows 窗体设计器生成的代码

    /// <summary>
    /// 设计器支持所需的方法 - 不要
    /// 使用代码编辑器修改此方法的内容。
    /// </summary>
    private void InitializeComponent()
    {
        this.components = new System.ComponentModel.Container();
        System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
        this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
        this.timer1 = new System.Windows.Forms.Timer(this.components);
        this.txtAdd = new System.Windows.Forms.TextBox();
        this.button1 = new System.Windows.Forms.Button();
        this.label1 = new System.Windows.Forms.Label();
        this.groupBox1 = new System.Windows.Forms.GroupBox();
        this.button2 = new System.Windows.Forms.Button();
        this.groupBox1.SuspendLayout();
        this.SuspendLayout();
        // 
        // notifyIcon1
        // 
        this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
        this.notifyIcon1.Visible = true;
        // 
        // timer1
        // 
        this.timer1.Enabled = true;
        this.timer1.Interval = 500;
        this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
        // 
        // txtAdd
        // 
        this.txtAdd.Location = new System.Drawing.Point(145, 36);
        this.txtAdd.Name = "txtAdd";
        this.txtAdd.Size = new System.Drawing.Size(193, 21);
        this.txtAdd.TabIndex = 0;
        // 
        // button1
        // 
        this.button1.Location = new System.Drawing.Point(103, 96);
        this.button1.Name = "button1";
        this.button1.Size = new System.Drawing.Size(75, 23);
        this.button1.TabIndex = 1;
        this.button1.Text = "发送消息";
        this.button1.UseVisualStyleBackColor = true;
        this.button1.Click += new System.EventHandler(this.button1_Click);
        // 
        // label1
        // 
        this.label1.AutoSize = true;
        this.label1.Location = new System.Drawing.Point(26, 39);
        this.label1.Name = "label1";
        this.label1.Size = new System.Drawing.Size(113, 12);
        this.label1.TabIndex = 2;
        this.label1.Text = "输入对方主机地址:";
        // 
        // groupBox1
        // 
        this.groupBox1.Controls.Add(this.button2);
        this.groupBox1.Controls.Add(this.button1);
        this.groupBox1.Controls.Add(this.label1);
        this.groupBox1.Controls.Add(this.txtAdd);
        this.groupBox1.Location = new System.Drawing.Point(13, 13);
        this.groupBox1.Name = "groupBox1";
        this.groupBox1.Size = new System.Drawing.Size(353, 154);
        this.groupBox1.TabIndex = 3;
        this.groupBox1.TabStop = false;
        this.groupBox1.Text = "发送消息";
        // 
        // button2
        // 
        this.button2.Location = new System.Drawing.Point(184, 96);
        this.button2.Name = "button2";
        this.button2.Size = new System.Drawing.Size(75, 23);
        this.button2.TabIndex = 3;
        this.button2.Text = "停止闪动";
        this.button2.UseVisualStyleBackColor = true;
        this.button2.Click += new System.EventHandler(this.button2_Click);
        // 
        // Form1
        // 
        this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        this.ClientSize = new System.Drawing.Size(380, 182);
        this.Controls.Add(this.groupBox1);
        this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
        this.MaximizeBox = false;
        this.MinimizeBox = false;
        this.Name = "Form1";
        this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
        this.Text = "动态托盘图标";
        this.Load += new System.EventHandler(this.Form1_Load);
        this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
        this.groupBox1.ResumeLayout(false);
        this.groupBox1.PerformLayout();
        this.ResumeLayout(false);

    }

    #endregion

    private System.Windows.Forms.NotifyIcon notifyIcon1;
    private System.Windows.Forms.Timer timer1;
    private System.Windows.Forms.TextBox txtAdd;
    private System.Windows.Forms.Button button1;
    private System.Windows.Forms.Label label1;
    private System.Windows.Forms.GroupBox groupBox1;
    private System.Windows.Forms.Button button2;
}

以上就是C#实现动态图标闪烁显示的示例代码的详细内容,更多关于C#动态图标闪烁显示的资料请关注脚本之家其它相关文章!

相关文章

  • c# 如何用lock解决缓存击穿

    c# 如何用lock解决缓存击穿

    这篇文章主要介绍了c# 如何用lock解决缓存击穿,帮助大家更好的理解和使用c#,感兴趣的朋友可以了解下
    2021-02-02
  • C#求n个数中最大值和最小值的方法

    C#求n个数中最大值和最小值的方法

    这篇文章主要介绍了C#求n个数中最大值和最小值的方法,涉及C#中max及min方法的使用技巧,需要的朋友可以参考下
    2015-05-05
  • C#使用HtmlAgilityPack组件解析html文档

    C#使用HtmlAgilityPack组件解析html文档

    这篇文章介绍了C#使用HtmlAgilityPack组件解析html文档的方法,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2022-06-06
  • 简单聊聊C#的线程本地存储TLS到底是什么

    简单聊聊C#的线程本地存储TLS到底是什么

    C#的ThreadStatic是假的,因为C#完全是由CLR(C++)承载的,言外之意C#的线程本地存储,用的就是用C++运行时提供的 __declspec(thread)或__thread来虚构的一套玩法,下面我们就来深入讲讲C#的线程本地存储TLS到底是什么吧
    2024-01-01
  • C#操作INI文件的示例代码

    C#操作INI文件的示例代码

    这篇文章主要为大家详细介绍了C#操作INI文件的相关知识,文中的示例代码讲解详细,具有一定的借鉴价值,感兴趣的小伙伴可以跟随上班一起学习一下
    2023-12-12
  • C#中窗体重复创建问题的解决方法

    C#中窗体重复创建问题的解决方法

    在C#Windows窗体应用中,我们经常遇到这样的问题,当我们触发一个窗口命令时,我连续点击其中一个命令,会出现多个同样的窗口,但我们是不管点击多少次,都只出现一次,所以本文给大家介绍了C#中窗体重复创建问题的解决方法,需要的朋友可以参考下
    2024-04-04
  • 如何利用现代化C#语法简化代码

    如何利用现代化C#语法简化代码

    这篇文章主要给大家介绍了关于如何利用现代化C#语法简化代码的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2021-04-04
  • C#设计模式之Mediator中介者模式解决程序员的七夕缘分问题示例

    C#设计模式之Mediator中介者模式解决程序员的七夕缘分问题示例

    这篇文章主要介绍了C#设计模式之Mediator中介者模式解决程序员的七夕缘分问题,简单说明了中介者模式的定义并结合七夕缘分问题实例分析了中介者模式的具体使用技巧,需要的朋友可以参考下
    2017-09-09
  • C#表达式中的动态查询详解【译】

    C#表达式中的动态查询详解【译】

    这篇文章主要给大家介绍了关于C#表达式中动态查询的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2021-01-01
  • C#实现将窗体固定在显示器的左上角且不能移动的方法

    C#实现将窗体固定在显示器的左上角且不能移动的方法

    这篇文章主要介绍了C#实现将窗体固定在显示器的左上角且不能移动的方法,涉及C#窗体固定操作的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2015-08-08

最新评论