码迷,mamicode.com
首页 > 其他好文 > 详细

设置闪烁的标题栏

时间:2018-12-11 14:36:57      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:system   sha   关闭   api函数   import   button   nta   实现   src   

实现效果:

  技术分享图片

知识运用:

  用到了API函数的FlashWindow

  [System.Runtime.InteropServices.DllImportAttribute("user32_.dll")]

  public static extern bool FlashWindow(IntPtr handle,bool bInvert);

  //handle: 表是要闪烁的窗体  bInvert: 是否恢复状态

实现代码:

        //重写API函数 用来实现标题栏的闪烁功能
        [System.Runtime.InteropServices.DllImportAttribute("user32.dll")]
        public static extern bool FlashWindow(IntPtr handle,bool bInvert);
        private void timer1_Tick_1(object sender, EventArgs e)
        {
            FlashWindow(this.Handle, true);     //启动窗体闪烁函数
        }
        private void button1_Click(object sender, EventArgs e)
        {
            timer1.Enabled = true;          //启动计时器
        }
        private void button2_Click(object sender, EventArgs e)
        {
            timer1.Enabled = false;         //关闭计时器
        }

 

设置闪烁的标题栏

标签:system   sha   关闭   api函数   import   button   nta   实现   src   

原文地址:https://www.cnblogs.com/feiyucha/p/10101732.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!