我有一个用c#编写的程序,它包含一个带有可观察集合的列表框。当集合中添加了项目时,我希望为用户(在系统托盘中)弹出一个气球。我有一个类,其中包含一个方法,用于在添加项目时通知列表框(见下文):
void OnFileCreated(object sender, FileSystemEventArgs e)
{
if (!base.Dispatcher.CheckAccess())
{
base.Dispatcher.BeginInvoke(
DispatcherPriority.Normal,
(FileSystemEventHandler)OnFileCreated,
sender, e);
}
else
{
// Ignore new directories.
if (File.Exists(e.FullPath))
{
Debug.WriteLine("File Created: " + e.FullPath);
_files.Add(new ObservableFileInfo(e.FullPath));
//Alert users to new request
string title = "Access Request";
string text = "A new access request has been submitted";
//show balloon with built-in icon
tbi.ShowBalloonTip(title, text, BalloonIcon.Error);
}
}
}
除了气球只显示我是否在OnFileCreated方法中创建气球的新实例(上面没有看到我把代码拿出来)时,代码完全按照预期工作。作为参考,我使用以下项目中的系统托盘图标.dll:http://www.codeproject.com/Articles/36468/WPF-NotifyIcon?fid=1540774&select=4624878&fr=51#xx0xx
我的问题是我已经在MainWindow类中启动了一个系统托盘图标,但我无法调用它来显示来自我的OnFileCreated方法的气球。我不确定如何在课堂上“分享”这些信息。
如果有人有任何想法会很棒。
答案 0 :(得分:0)
我最终使用FindResource来定位xaml资源文档中定义的资源。这是在我引用的项目代码中指定的,但是FindResource本身不能正常工作,我需要添加App.Current:
notifyIcon = (TaskbarIcon)App.Current.FindResource("NotifyIcon");
notifyIcon.ShowBalloonTip(title, text, BalloonIcon.Error);