分享
 
 
 

用C#实现智能设备上的NotifyIcon类

王朝c#·作者佚名  2008-05-30
窄屏简体版  字體: |||超大  

前几天有网友问.NET CF中怎么实现NotifyIcon,我这才知道原来.NET CF并没有提供NotifyIcon控件。

于是偶想PC上可以用Shell_NotifyIcon和MessageWindow来实现托盘图标,只是不知道.NET CF支持不支持这两个东东了。仔细看了一下.NET CF中可疑的命名空间,没想到在Microsoft.WindowsCE.Forms命名空间里面竟然有一个MessageWindow 类,太好了,只剩下一个Shell_NotifyIcon 函数了。接着 在Window CE的SDK的帮助文件里,又发现Window CE Platform API已经包含了Shell_NotifyIcon函数。两大“主料”都齐了,只剩下锅了。

先看一下MessageWindow类,这个类提供了 WndProc 方法,用于处理窗口消息,并公开了可能传递给本机窗口函数的有效窗口句柄。要使用它,派生一个新类,并重写的 WndProc 方法,这样才能截获特定的窗口消息。这里主要用来处理click事件。

Shell_NotifyIcon的用法如下:

[DllImport("coredll.dll")]

internal static extern int Shell_NotifyIcon(int dwMessage, ref NOTIFYICONDATA pnid);

其中,NOTIFYICONDATA结构如下:

struct NOTIFYICONDATA

{

int cbSize;

IntPtr hWnd;

uint uID;

uint uFlags;

uint uCallbackMessage;

IntPtr hIcon;

}

Pnid参数的生命需要注意,是按引用传递的,因为Shell_NotifyIcon 需要一个指向 NOTIFYICONDATA 结构的指针。

hWnd是用来接收任务栏中图标单击消息的窗口的句柄。

运行示例的时候由于窗体最大化,挡住了任务栏,把窗体最小化之后就能看到托盘图标了。(效果图片竟然贴不上来,改天再贴吧)

该类和示例的下载地址:http://www.cnblogs.com/Files/ttinfo/NotifyIconCf.rar

下面是NotifyIcon类的实现,别忘了引用Microsoft.WindowsCE.Forms。注意Add方法提供了不同的重载形式,具体请参看注释:

using System;

using System.Runtime.InteropServices;

using System.Windows.Forms;

namespace NotifyClient

{

/**//// <summary>

/// 智能设备托盘图标类

/// </summary>

public class NotifyIcon

{

//单击事件

public event System.EventHandler Click;

private MyMessageWindow messageWindow;

private int uID = 5000;

private System.Drawing.Icon _Icon;

public NotifyIcon()

{

messageWindow = new MyMessageWindow(this);

messageWindow.uID = uID;

}

public System.Drawing.Icon Icon

{

set

{

_Icon = value;

}

}

~NotifyIcon()

{

Remove();

}

/**//// <summary>

/// 添加托盘图标

/// </summary>

/// <param name="hIcon">icon文件的有效句柄</param>

public void Add(IntPtr hIcon)

{

NotifyMessage(messageWindow.Hwnd, NIM_ADD, (uint)uID, hIcon);

}

/**//// <summary>

/// 添加托盘图标

/// </summary>

/// <param name="IconRes">编译之后的资源文件中的icon资源名称,如“#201547”</param>

public void Add(string IconRes)

{

IntPtr hIcon = LoadIcon(GetModuleHandle(null), IconRes);

NotifyMessage(messageWindow.Hwnd, NIM_ADD, (uint)uID, hIcon);

}

/**//// <summary>

/// 添加托盘图标

/// </summary>

/// <param name="icon">icon文件</param>

public void Add(System.Drawing.Icon icon)

{

NotifyMessage(messageWindow.Hwnd, NIM_ADD, (uint)uID, icon.Handle);

}

/**//// <summary>

/// 添加托盘图标;icon为属性中的icon

/// </summary>

public void Add()

{

if (_Icon != null)

{

NotifyMessage(messageWindow.Hwnd, NIM_ADD, (uint)uID, _Icon.Handle);

}

}

public void Remove()

{

NotifyMessage(messageWindow.Hwnd, NIM_DELETE, (uint)uID, IntPtr.Zero);

}

public void Modify(IntPtr hIcon)

{

NotifyMessage(messageWindow.Hwnd, NIM_MODIFY, (uint)uID, hIcon);

}

private void NotifyMessage(IntPtr hwnd, int dwMessage, uint uID, IntPtr hIcon)

{

NOTIFYICONDATA notdata = new NOTIFYICONDATA();

notdata.cbSize = 152;

notdata.hIcon = hIcon;

notdata.hWnd = hwnd;

notdata.uCallbackMessage = WM_NOTIFY_TRAY;

notdata.uFlags = NIF_MESSAGE | NIF_ICON;

notdata.uID = uID;

int ret = Shell_NotifyIcon(dwMessage, ref notdata);

}

API#region API

//定义消息常量

const int NIF_MESSAGE = 0x00000001;

const int NIF_ICON = 0x00000002;

internal const int WM_LBUTTONDOWN = 0x0201;

internal const int NIM_ADD = 0x00000000;

internal const int NIM_MODIFY = 0x00000001;

internal const int NIM_DELETE = 0x00000002;

//自定义消息

internal const int WM_NOTIFY_TRAY = 0x0400 + 2001;

internal struct NOTIFYICONDATA

{

internal int cbSize;

internal IntPtr hWnd;

internal uint uID;

internal uint uFlags;

internal uint uCallbackMessage;

internal IntPtr hIcon;

}

[DllImport("coredll.dll")]

internal static extern int Shell_NotifyIcon(

int dwMessage, ref NOTIFYICONDATA pnid);

[DllImport("coredll.dll")]

internal static extern int SetForegroundWindow(IntPtr hWnd);

[DllImport("coredll.dll")]

internal static extern int ShowWindow(

IntPtr hWnd,

int nCmdShow);

[DllImport("coredll.dll")]

internal static extern IntPtr GetFocus();

[DllImport("coredll.dll")]

internal static extern IntPtr LoadIcon(IntPtr hInst, string IconName);

[DllImport("coredll.dll")]

internal static extern IntPtr GetModuleHandle(String lpModuleName);

#endregion

MessageWindow#region MessageWindow

internal class MyMessageWindow : Microsoft.WindowsCE.Forms.MessageWindow

{

private int _uID = 0;

private NotifyIcon notifyIcon;

public MyMessageWindow(NotifyIcon notIcon)

{

notifyIcon = notIcon;

}

public int uID

{

set

{

_uID = value;

}

}

protected override void WndProc(ref Microsoft.WindowsCE.Forms.Message msg)

{

if (msg.Msg == WM_NOTIFY_TRAY)

{

if ((int)msg.LParam == WM_LBUTTONDOWN)

{

if ((int)msg.WParam == _uID)

{

if (notifyIcon.Click != null)

notifyIcon.Click(notifyIcon, null);

}

}

}

}

}

#endregion

}

}

http://www.cnblogs.com/ttinfo/archive/2006/10/31/545741.html

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有