码迷,mamicode.com
首页 > Windows程序 > 详细

C# Windows 7任务栏开发之图标闪动(Flash)

时间:2015-04-28 09:46:18      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:windows 7   任务栏   

      使用QQ聊天时,如果对方发出了信息QQ 图标会闪动提示,虽然Windows API 没有直接控制闪动效果的方法,但该效果在开发中可能会经常使用,下面代码为一个闪动效果类:

/// <summary>
/// Win32 API
/// </summary>
internal static class Win32
{
    /// <summary>
    /// 窗口闪动
    /// </summary>
    /// <param name="hwnd">窗口句柄</param>
    /// <param name="bInvert">是否为闪</param>
    /// <returns>成功返回0</returns>
    [DllImport("user32.dll")]
    public static extern bool FlashWindow(IntPtr hwnd, bool bInvert);
}
/// <summary>
/// 窗口闪动的辅助类
/// </summary>
public class FlashWindowHelper
{
    Timer   _timer;
    int     _count      = 0;
    int     _maxTimes   = 0;
    IntPtr  _window;

    public void Flash(int times, double millliseconds, IntPtr window)
    {
        _maxTimes   = times;
        _window     = window;

        _timer = new Timer();
        _timer.Interval = millliseconds;
        _timer.Elapsed += _timer_Elapsed;
        _timer.Start();
    }

    void _timer_Elapsed(object sender, ElapsedEventArgs e)
    {
        if (++_count < _maxTimes)
        {
            Win32.FlashWindow(_window, (_count % 2) == 0);
        }
        else
        {
            _timer.Stop();
        }
    }
}
      通过FlashWindowHelper 类可以轻松的使任务栏图标闪动起来:

/// <summary>
/// 通过FlashWindowHelper 类可以轻松的使任务栏图标闪动起来:
/// </summary>
private void _btnFlash_Click(object sender, EventArgs e)
{
    FlashWindowHelper helper = new FlashWindowHelper();
    helper.Flash(10, 300, this.Handle);
}
技术分享


C# Windows 7任务栏开发之图标闪动(Flash)

标签:windows 7   任务栏   

原文地址:http://blog.csdn.net/aoshilang2249/article/details/45330529

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