我正在开发WPF应用程序,需要像Skype一样创建弹出窗口 - 当您点击托盘图标时,它会显示与图标相关的中心水平对齐方式(如附图中所示)。你知道怎么做吗?请帮忙。 Skype example image
答案 0 :(得分:3)
您可以使用System.Windows.Forms.NotifyIcon来显示通知气球。
var notifyIcon = new System.Windows.Forms.NotifyIcon
{
Visible = true,
Icon = System.Drawing.Icon.ExtractAssociatedIcon(Assembly.GetExecutingAssembly().Location),
Text = Title
};
notifyIcon.ShowBalloonTip(1, "Hello World", "Description message", System.Windows.Forms.ToolTipIcon.Info);