微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – 使用桌面应用程序在Windows 10上发出通知

我在C#中使用NotifyIcon获得了一个 Windows Forms项目.我正在使用以下代码显示气球通知

notifyIcon.ShowBalloonTip(1000,"title","text",ToolTipIcon.Info);

这工作正常,直到Windows 8.1.现在我已经安装了Windows 10预览版,并且气球通知不再显示.

我想所有的通知都会被移动到Windows 8风格的Toast通知中,并且气球通知被完全删除(因为我还没有看到一个气球通知,还有更多的Toast通知),但我还没有找到官方来源这个呢.

问题是我的应用程序只是一个.exe文件,所以它没有安装程序或快捷方式.根据this页面,需要一个创建快捷方式的安装程序才能使Toast通知正常工作.

如何在没有任何快捷方式或安装程序的情况下在Windows 10中显示通知(我不在乎它是气球还是吐司通知)?

解决方法

我用这个帖子来帮助制作这段代码 – 我正在分享我的成功.

警告我是C#的新手,所以我的代码可能很糟糕 – 但它确实有用并且相当简单,而且对于我找到的大多数解决方案而言,这比我能说的还多

此外,我还有一段时间来阅读xml文档.我正在使用System.xml(我认为)和Windows.Data.Dom.Xml(也不完全确定).
最后,我决定为我的示例文件制作硬编码字符串,并使用switch语句在它们之间切换.
我找到了很多人,在堆栈溢出时寻找我提出的解决方案.似乎使用带有控制台或后台应用程序的Toast通知系统将非常有用,并且使用Windows应用程序围绕Toast通知系统的文档都表明它需要与应用程序一起使用.对于NotificationTray / NotifyIcon路由的通知,操作中心非常有用.我还没有在网络上的任何其他地方找到完整的解决方案.这是示例代码.

/*
At first you need to declare that your program will be using winRT libraries:
1. Right click on your yourProject,select Unload Project
2. Right click on your youProject(unavailable) and click Edit yourProject.csproj
3. Add a new property group:<TargetPlatformVersion>8.0</TargetPlatformVersion>
4. Reload project
5. Add referece Windows from Windows > Core
*/
using System;
using Windows.Data.Xml.Dom;
using Windows.Storage;
using Windows.Storage.Streams;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.UI.Notifications;

namespace ConsoleApplication6
{
    public class NewToastNotification
    {
        public NewToastNotification(string input,int type)
        {
            string NotificationTextThing = input;
            string Toast = "";
            switch (type)
            {
                case 1:
                    {
                        //Basic Toast
                        Toast = "<toast><visual><binding template=\"ToastimageAndText01\"><text id = \"1\" >";
                        Toast += NotificationTextThing;
                        Toast += "</text></binding></visual></toast>";
                        break;
                    }
                default:
                    {
                        Toast = "<toast><visual><binding template=\"ToastimageAndText01\"><text id = \"1\" >";
                        Toast += "Default Text String";
                        Toast += "</text></binding></visual></toast>";
                        break;
                    }
            }
            XmlDocument tileXml = new XmlDocument();
            tileXml.LoadXml(Toast);
            var toast = new ToastNotification(tileXml);
            Toastnotificationmanager.CreatetoastNotifier("New Toast Thing").Show(toast);
        }
}

    class Program
    {
        static void Main(string[] args)
        {
            NewToastNotification Window = new NewToastNotification("Yes",1);


        }
    }
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐