我有一个C#WPF .NET 4应用程序,系统托盘中有一个图标。我目前正在使用经过充分讨论的WPF NotifyIcon,但我遇到的问题并不依赖于此控件。问题是.NET 4根本不允许(大多数情况下)WPF ContextMenu对象出现在Windows 7任务栏的顶部。这个例子很好地说明了这个问题。
XAML:
<Window x:Class="TrayIconTesting.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="100" Width="400">
<Window.Resources>
<ContextMenu x:Key="TrayContextMenu" Placement="MousePoint">
<MenuItem Header="First Menu Item" />
<MenuItem Header="Second Menu Item" />
</ContextMenu>
<Popup x:Key="TrayPopup" Placement="MousePoint">
<Border Width="100" Height="100" Background="White" BorderBrush="Orange" BorderThickness="4">
<Button Content="Close" Click="ButtonClick"></Button>
</Border>
</Popup>
</Window.Resources>
<StackPanel Orientation="Horizontal">
<Label Target="{Binding ElementName=UseWinFormsMenu}" VerticalAlignment="Center">
<AccessText>Use WinForms context menu for tray menu:</AccessText>
</Label>
<CheckBox Name="UseWinFormsMenu" IsChecked="False" Click="UseWinFormsMenuClicked" VerticalAlignment="Center" />
</StackPanel>
</Window>
代码:
using System.Drawing;
using System.Windows;
using System.Windows.Controls.Primitives;
using System.Windows.Forms;
using ContextMenu = System.Windows.Controls.ContextMenu;
namespace TrayIconTesting
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
private ContextMenuStrip winFormsContextMenu;
public MainWindow()
{
InitializeComponent();
this.TrayIcon = new NotifyIcon
{
Icon = new Icon("Bulb.ico"),
Visible = true
};
this.TrayIcon.MouseClick += (sender, args) =>
{
switch (args.Button)
{
case MouseButtons.Left:
this.TrayPopup.IsOpen = true;
break;
case MouseButtons.Right:
if (!this.UseWinFormsMenu.IsChecked.GetValueOrDefault())
{
this.TrayContextMenu.IsOpen = true;
}
break;
}
};
}
private void ButtonClick(object sender, RoutedEventArgs e)
{
this.TrayPopup.IsOpen = false;
}
private void UseWinFormsMenuClicked(object sender, RoutedEventArgs e)
{
this.TrayIcon.ContextMenuStrip = this.UseWinFormsMenu.IsChecked.GetValueOrDefault() ? this.WinFormsContextMenu : null;
}
private ContextMenu TrayContextMenu
{
get
{
return (ContextMenu)this.FindResource("TrayContextMenu");
}
}
private Popup TrayPopup
{
get
{
return (Popup)this.FindResource("TrayPopup");
}
}
private NotifyIcon TrayIcon
{
get;
set;
}
private ContextMenuStrip WinFormsContextMenu
{
get
{
if (this.winFormsContextMenu == null)
{
this.winFormsContextMenu = new ContextMenuStrip();
this.winFormsContextMenu.Items.AddRange(new[] { new ToolStripMenuItem("Item 1"), new ToolStripMenuItem("Item 2") });
}
return this.winFormsContextMenu;
}
}
}
}
要查看问题,请确保托盘图标始终可见,而不是Win7托盘图标弹出窗口的一部分。右键单击托盘图标时,上下文菜单将打开任务栏上方。现在,右键单击其旁边的标准Windows托盘图标之一,看看差异。
现在,左键单击图标,注意它允许自定义弹出窗口在鼠标光标所在的位置打开。
选中“使用WinForms ...”复选框将切换应用程序以使用Windows.Forms程序集中的旧ContextMenuStrip上下文菜单。这显然会在正确的位置打开菜单,但其外观与默认的Windows 7菜单不匹配。具体来说,行突出显示是不同的。
我使用了Horizontal和VerticalOffset属性,并且使用“right”值可以让屏幕右下方的上下文菜单一直弹出,但这也很糟糕。它仍然永远不会打开光标所在的位置。
真正的踢球者是,如果您构建针对.NET 3.5的相同示例,它就会按预期工作。不幸的是,我的真实应用程序使用了许多.NET 4功能,因此不能选择恢复。
任何人都知道如何让光标所在的上下文菜单实际打开?
答案 0 :(得分:0)
经过一番搜索,我偶然发现了question & answer。我从没想过尝试ContextMenu
上的NotifyIcon
属性!虽然不理想,但它可以很好地工作,直到WPF解决了系统托盘是应用程序的有用部分这一事实。丢失WPF ContextMenu提供的所有绑定和命令路由功能真的很遗憾。
虽然接受我自己的答案感觉不对,所以我要再开几天了。
答案 1 :(得分:0)
嗯,我很高兴没有将此标记为已回答,因为我找到了一个稍微好一点的选择。我发现this article详细说明了如何向System.Windows.Forms.MenuItem对象添加图标。现在只需一点代码,我就有了一个完全匹配系统上下文菜单的菜单!