PowerShell NotifyIcon上下文菜单

时间:2019-02-12 11:46:52

标签: powershell contextmenu notifyicon

我使用PowerShell运行以下NotifyIcon:

NotifyIcon

这是通过右键单击图标打开的上下文菜单,此刻仅显示退出:

NotifyIcon right clicked

我想知道如何添加两个事件处理程序:

  1. 在图标上发生左键单击事件时运行功能
  2. 在右键菜单中添加另一个可以运行功能的选项

我已经在网上搜索了一个多小时,并且使用来自5或6个不同网站的旧代码尝试了约20种不同的变体(所有示例均显示出截然不同的示例)。除了头疼我什么都没有。谁能提供任何指导/指示?

$ProgramDataPath = "$ENV:ProgramData\test"
$ProgramFilesPath = "${env:ProgramFiles(x86)}\test"

[void][System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms")

$STForm = New-Object System.Windows.Forms.form
$NotifyIcon = New-Object System.Windows.Forms.NotifyIcon
$ContextMenu = New-Object System.Windows.Forms.ContextMenu
$MenuItem = New-Object System.Windows.Forms.MenuItem
$Timer = New-Object System.Windows.Forms.Timer
$HealthyIcon = New-Object System.Drawing.Icon("$ProgramFilesPath\icons\healthy.ico")
$UnhealthyIcon = New-Object System.Drawing.Icon("$ProgramFilesPath\icons\unhealthy.ico")

$STForm.ShowInTaskbar = $false
$STForm.WindowState = "minimized"

$NotifyIcon.Icon = $HealthyIcon
$NotifyIcon.ContextMenu = $ContextMenu
$NotifyIcon.ContextMenu.MenuItems.AddRange($MenuItem)
$NotifyIcon.Visible = $True

# We need to avoid using Start-Sleep as this freezes the GUI. Instead, we'll utilitse the .NET forms timer, it repeats a function at a set interval.
$Timer.Interval = 300000 # (5 min)
$Timer.add_Tick({ Load-Config })
$Timer.start()

# This will appear as a right click option on the system tray icon
$MenuItem.Index = 0
$MenuItem.Text = "Exit"
$MenuItem.add_Click({
        $Timer.Stop()
        $NotifyIcon.Visible = $False
        $STForm.close()
    })

function Load-Config
{
    #Get-Content some Data from a file here
    if ($warn)
    {
        $NotifyIcon.Icon = $UnhealthyIcon
        $NotifyIcon.ShowBalloonTip(30000, "Attention!", "Some data from a file here...", [system.windows.forms.ToolTipIcon]"Warning")
        Remove-Variable warn
    }
    else
    {
        $NotifyIcon.Icon = $HealthyIcon
    }
}

Load-Config
[void][System.Windows.Forms.Application]::Run($STForm)

1 个答案:

答案 0 :(得分:0)

让我们谈谈您真正需要的东西。看起来您有很多不需要的部分,例如计时器等。您需要的只是一个运行空间。打开表单将使运行空间保持打开状态,而无需该计时器。确保$Form.ShowDialog()是最后运行的内容。

因此,让我们继续进入NotifyIcon弹出窗口。使弹出窗口发生的方法是私有的,这意味着我们将需要通过反射来实现。我们还需要将事件设置为“通知图标”在MouseDown上运行,并单击$_.button

确保将$NotifyIcon.Icon设置为图标,否则将不会显示“通知”图标。

工作脚本

Add-Type -AssemblyName System.Windows.Forms

$form = New-Object System.Windows.Forms.Form
$form.ShowInTaskbar = $true
$form.WindowState = [System.Windows.WindowState]::Normal

$MenuItemLeft = New-Object System.Windows.Forms.MenuItem
$MenuItemLeft.Text = "Left Exit"
$MenuItemLeft.add_Click({
   $NotifyIcon.Visible = $False
   $form.Close()
   $NotifyIcon.Dispose()
})
$ContextMenuLeft = New-Object System.Windows.Forms.ContextMenu
$ContextMenuLeft.MenuItems.Add($MenuItemLeft)


$MenuItemRight = New-Object System.Windows.Forms.MenuItem
$MenuItemRight.Text = "Right Exit"
$MenuItemRight.add_Click({
   $NotifyIcon.Visible = $False
   $form.Close()
   $NotifyIcon.Dispose()
})
$ContextMenuRight = New-Object System.Windows.Forms.ContextMenu
$ContextMenuRight.MenuItems.Add($MenuItemRight)

$NotifyIcon= New-Object System.Windows.Forms.NotifyIcon
$NotifyIcon.Icon =  "C:\Test\Test.ico"
$NotifyIcon.ContextMenu = $ContextMenuRight
$NotifyIcon.add_MouseDown({
    if ($_.Button -eq [System.Windows.Forms.MouseButtons]::left ) {
        $NotifyIcon.contextMenu = $ContextMenuLeft
    }else{
        $NotifyIcon.contextMenu = $ContextMenuRight           
    }
    $NotifyIcon.GetType().GetMethod("ShowContextMenu",[System.Reflection.BindingFlags]::Instance -bor [System.Reflection.BindingFlags]::NonPublic).Invoke($NotifyIcon,$null)
})
$NotifyIcon.Visible = $True

$form.ShowDialog()
$NotifyIcon.Dispose()

我重读了您的帖子,使您无法为您提供最重要的内容

要使Powershell运行命令,必须运行一个运行空间。运行空间会使用Powershell命令并将其转换为实际操作。

由于您使用了powershell,因此notifyicons操作依赖于运行空间来解释这些操作。

NotifyIcon基本上只是角落里的一个图标,可以弹出气球通知或上下文菜单。

因此,当您看时会看到$NotifyIcon.ContextMenu,它是一个保存 ContextMenu对象的属性。上下文菜单对象包含菜单项

因此,只需将MenuItems添加到ContextMenu对象,然后将该ContextMenu对象添加到$ NotifyIcon.ContextMenu。现在,您可以更改并添加所有您喜欢的项目。

由于powershell等待表单关闭,然后继续执行下一行代码,因此$ Form.ShowForms()将使运行空间保持活动状态,直到退出表单为止。

让我们看看这个令人讨厌的烂摊子: $NotifyIcon.GetType().GetMethod("ShowContextMenu",[System.Reflection.BindingFlags]::Instance -bor [System.Reflection.BindingFlags]::NonPublic).Invoke($NotifyIcon,$null)

这称为反射。它允许您与课程互动。用简单的话来说。 ShowContextMenu方法是私有的,不能从类的内部正常运行。使用反射,您仍然可以调用它。

因此,让我们对其进行分解,因为这确实是您所要的。

GetType()将为您提供对象。如果我做了"HEY".gettype(),它将告诉我该对象是一个字符串。在这种情况下,$NotifyIcon.GetType()告诉我这是一个NotifyIcon。发生了什么事,这让我回到了Type Class。

在此我们看到GetMethod("ShowContextMenu"),但让我在这里进行更深入的了解...我们如何知道有一个名为 ShowContextMenu 的方法。好吧,我们可以做的是使用GetMembers()查看此NotifyIcon类的所有成员。现在GetMembers()实际上只是一个搜索...默认情况下仅搜索公共成员,因此我们需要搜索所有成员。搜索内容的参数包含在枚举[System.Reflection.BindingFlags]和一些 Bitwise 数学中。

$BitWise
[System.Reflection.BindingFlags].GetEnumNames() | %{
    $BitWise = $BitWise -bor [System.Reflection.BindingFlags]$_ 
} | out-null

$NotifyIcon.GetType().GetMembers($BitWise) | ?{$_.Name -like "*Context*"} | select Name, MemberType

这表示找到名称中包含单词 Context 的所有项目,并显示其全名和类型。作为回应,我们得到

Name                 MemberType
----                 ----------
set_ContextMenu          Method
get_ContextMenu          Method
get_ContextMenuStrip     Method
set_ContextMenuStrip     Method
ShowContextMenu          Method
ContextMenu            Property
ContextMenuStrip       Property
contextMenu               Field
contextMenuStrip          Field

我们可以看到ShowContextMenu,也可以看到它的方法

所以现在我们需要直接获取该方法。 getMethod()出现在这里,这只是另一个搜索,它带回1个项目而不是所有项目。所以

GetMethod("ShowContextMenu",[System.Reflection.BindingFlags]::Instance -bor [System.Reflection.BindingFlags]::NonPublic)

获取方法ShowContextMenu它将是Private的,因此NonPublic,并且必须创建该类的实例才能运行Instance。

.Invoke($NotifyIcon,$null)

然后,通过告诉哪个控件具有我们要运行的方法并传递任何不是$ null的参数来调用该方法。

这就是您的操作方式。