mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2025-12-29 13:00:35 +00:00
15 lines
430 B
C#
15 lines
430 B
C#
using System.Reflection;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DnsServerTrayIcon
|
|
{
|
|
public static class ContextMenuNotifyIconExtensions
|
|
{
|
|
public static void ShowContextMenu(this NotifyIcon notifyIcon)
|
|
{
|
|
MethodInfo methodInfo = typeof(NotifyIcon).GetMethod("ShowContextMenu", BindingFlags.Instance | BindingFlags.NonPublic);
|
|
methodInfo.Invoke(notifyIcon, null);
|
|
}
|
|
}
|
|
}
|