新增工具元件"notifyIcon" 與 "contextMenuStrip" 加到專案中
1.在Form.cs 的UI上選擇contextMenuStrip加入事件
2.到notifyIcon的屬性contextMenuStrip添加contextMenuStrip1元件名稱
3.到notifyIcon的事件 加入Click
using System.Reflection;
private void notifyIcon1_Click(object sender, EventArgs
e)
{
Type t
= typeof(NotifyIcon);
MethodInfo mi = t.GetMethod("ShowContextMenu", BindingFlags.NonPublic | BindingFlags.Instance);
mi.Invoke(this.notifyIcon1, null);
}
沒有留言:
張貼留言