为两个TargetPlatformVersion编译Visual Studio C#项目

时间:2015-02-02 14:23:22

标签: c# winforms visual-studio-2013 windows-8 windows-7

我开发了一个.NET Windows应用程序,它可以在Windows 7和8.1上运行。然后我添加了Windows 8附带的Toast通知功能(来自这个问题:How can I use the Windows.UI namespace from a regular (Non-Store) Win32 .NET application?)。 这也有用,我只需补充:

<PropertyGroup> <TargetPlatformVersion>8.0</TargetPlatformVersion> </PropertyGroup>

到项目文件。

当我从Windows 8.1 SDK C:\Program Files (x86)\Windows Kits\8.1\References\CommonConfiguration\Neutral\Windows.winmd引用Windows.winmd文件时,可执行文件不再在Windows 7上启动了!我点击双击即可。没有错误,没有消息。

由于我没有在网上找到任何解决方案,我的问题就出现了:如何设法同时执行这两项操作:向用户提供 toast 功能并进行相同操作。 exe 在Windows 7上运行

提前谢谢!

修改 事实证明,尽管TargetPlatformVersion设置为8.0,但可执行文件仍然在Windows 7上启动,但程序尝试加载Windows 8库时崩溃:

An unhandled exception of type 'System.TypeLoadException' occurred in ToastTester.exe. Additional information: Could not find Windows Runtime type 'Windows.UI.Notifications.ToastNotificationManager'.

Application.Run(new Form1());

在第9行的Form1.cs中,我得到了using Windows.UI.Notifications;

在运行时期间避免此异常的最佳方法是什么,即使预计此可执行文件将在Windows 7中的环境中运行,而Windows 7中的Windows.UI.Notifications命名空间肯定不可用?

1 个答案:

答案 0 :(得分:0)

我设计了自己的解决方法,因为它能够支持Windows 8 Toast,同时防止因在Windows 7上运行时丢失库而导致的应用程序崩溃。注意:我使用的是Singleton设计模式(成员INSTANCE ),但你总是可以这样做。

<强> ShellLink.cs is taken from here

<强> Win8Toaster.cs:

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Windows.Data.Xml.Dom;
using Windows.UI.Notifications;

namespace ToastManager
{
    class Win8Toaster
    {
        public const string APPUSERMODELID = "YourCompany.YourApplicationName";
        public static string ShortcutLocation;
        public static ToastNotifier ToastNotifier;

        private static Win8Toaster _INSTANCE = null;
        public static Win8Toaster INSTANCE
        {
            get
            {
                if (_INSTANCE == null)
                {
                    _INSTANCE = new Win8Toaster();
                }
                return _INSTANCE;
            }
        }

        public Win8Toaster()
        {
            ShortcutLocation = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\Microsoft\Windows\Start Menu\Programs\YourCompany\YourApplication.lnk");
            //We need a start menu shortcut (a ShellLink object) to show toasts.
            if (!File.Exists(ShortcutLocation))
            {
                string directory = Path.GetDirectoryName(ShortcutLocation);
                if (!Directory.Exists(directory))
                {
                    Directory.CreateDirectory(directory);
                }
                using (ShellLink shortcut = new ShellLink())
                {
                    shortcut.TargetPath = System.Reflection.Assembly.GetEntryAssembly().Location;
                    shortcut.Arguments = "";
                    shortcut.AppUserModelID = APPUSERMODELID;
                    shortcut.Save(ShortcutLocation);
                }
            }
            ToastNotifier = ToastNotificationManager.CreateToastNotifier(APPUSERMODELID);
        }

        public void ShowToast(ToastContent Content)
        {
            XmlDocument ToastContent = new XmlDocument();
            ToastContent.LoadXml("<toast><visual><binding template=\"ToastImageAndText02\"><image id=\"1\" src=\"file:///" + Content.ImagePath + "\"/><text id=\"1\">" + Content.Text1 + "</text><text id=\"2\">" + Content.Text2 + "</text></binding></visual></toast>");
            ToastNotification thisToast = new ToastNotification(ToastContent);
            ToastNotifier.Show(thisToast);
        }                
    }
}

<强> Toaster.cs

using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace ToastManager
{
    public static class Toaster
    {
        private static Win8Toaster ActiveToaster;
        public static bool Win8ToasterAvailable = true;
        public static void ShowToast(ToastContent Content)
        {
            if (Win8ToasterAvailable)
            {
                if (ActiveToaster == null)
                {
                    if (Environment.OSVersion.Version.Major > 6 || Environment.OSVersion.Version.Major == 6 && Environment.OSVersion.Version.Minor >= 2)
                    {
                        try
                        {
                            ActiveToaster = Win8Toaster.INSTANCE;
                        }
                        catch (Exception ex)
                        {
                            Win8ToasterAvailable = false;
                        }
                    }
                    else
                    {
                        Win8ToasterAvailable = false;
                    }
                }
                ActiveToaster.ShowToast(Content);
            }
            else
            {
                //Use alternative notifications because Windows 8 Toasts are not available
            }
        }
    }
    //I also wrote my own toast content structure:
    public class ToastContent
    {

        public string ImagePath, Text1, Text2;
        public ToastContent(string ImagePath, string Text1, string Text2)
        {
            this.ImagePath = ImagePath;
            this.Text1 = Text1;
            this.Text2 = Text2;
        }
    }
}

现在您已经获得了必要的课程,以下是如何使用它(非常简单,是吧?):

ToastManager.Toaster.ShowToast(new ToastManager.ToastContent(@"..\path\toyour\image.png", "Your Application Name", "Time: " + DateTime.Now.ToLongTimeString()));

此示例显示使用当前系统时间的Toast通知,如果您使用的是Windows 7,则显示任何内容。

设计建议:

我使用WinForms设计了一个类似于Windows 8中的通知窗口,并使用我自己的表单模拟相同的功能。或者,您也可以实现托盘图标并显示一些通知气泡。