基本信息
源码名称:仿QQ右下角消息提示 图标闪烁效果(NotifyIcon)
源码大小:0.22M
文件格式:.zip
开发语言:C#
更新时间:2016-05-05
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace mgen_windowNotify
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
NotifyIconAnimator trayAnimator;
private void button1_Click(object sender, EventArgs e)
{
var icons = new string[] { "project1.ico", "project2.ico" }.Select(s => new Icon(s)).ToArray();
trayAnimator.StartAnimation(icons, 500, -1);
}
private void button2_Click(object sender, EventArgs e)
{
trayAnimator.StopAnimation();
}
private async void button3_Click(object sender, EventArgs e)
{
await Task.Delay(3000);
NativeMethods.FlashWindowEx(this);
}
private void Form1_Load(object sender, EventArgs e)
{
notifyIcon1.Icon = new Icon("project1.ico");
trayAnimator = new NotifyIconAnimator(notifyIcon1);
}
//窗体中3秒后非活动闪烁窗口的按钮点击事件执行
//NativeMethods类型是Win32 API的封装类型,请参考源代码或者pinvoke.net
private async void button4_Click(object sender, EventArgs e)
{
//等3秒
await Task.Delay(3000);
//判断Form的Handle是否是当前活动窗口的Handle
if (this.Handle != NativeMethods.GetForegroundWindow())
//如果是的话,执行FlashWindowEx
NativeMethods.FlashWindowEx(this);
}
}
}