2

设置:

  • Visual Studio 2015 社区
  • WPF 4.5 应用程序
  • MVVM设计结构

问题:

导致问题的错误在某种程度上与应用程序命名以及常见转换有关,但是,在我尝试更改project propertieson之后出现此错误Visual Studio 2015。特别是Assembly name和 Default namespace。现在我无法找到原因并修复它。

关于什么是正确的继续进行的任何提示?

此错误出现在App.xaml

严重性代码描述项目文件行抑制状态错误无法将“System.Windows.Application”类型的对象转换为“FxConnection.App”类型。应用名称 C:\Users*\Documents\Visual Studio 2015\Project1\App.xaml 11

有问题的行是:

<Application.Resources>
        <ResourceDictionary>
            <viewModels:ViewModelLocator x:Key="Locator" d:IsDataSource="True" />

我在我的项目中使用Mvvm light它。viewModelLocator当我尝试使用Locator查找视图模型时,此错误会导致一些绑定错误。

编辑1:

应用程序.xaml

<Application x:Class="FxConnection.App" 
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             d1p1:Ignorable="d" xmlns:d1p1="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:viewModels="clr-namespace:FxConnection.ViewModels" 
             xmlns:ds="clr-namespace:FxConnection.Helpers">
    <!-- StartupUri="Views/MainWindow.xaml"-->
    <Application.Resources>
        <ResourceDictionary>
            <viewModels:ViewModelLocator x:Key="Locator" d:IsDataSource="True" />
            <BitmapImage x:Key="FidelixLogo" CreateOptions="IgnoreImageCache" CacheOption="OnLoad" UriSource="/**/logo.png" />
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="*******" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>

应用程序.xaml.cs

using System;
using System.Deployment.Application;
using System.Diagnostics;
using System.Reflection;
using System.Text;
using System.Threading;
using System.Windows;
using System.Windows.Threading;
using FxConnection.Properties;
using FxConnection.Views;
using FxConnection.Views.ProjectView;
using GalaSoft.MvvmLight.Threading;

namespace FxConnection
{
    /// <summary>
    /// Interaction logic for App.xaml
    /// </summary>
    public partial class App : Application
    {
        protected override void OnStartup(StartupEventArgs e)
        {
            // Handle globally exceptions
#if DEBUG
            //Application.Current.DispatcherUnhandledException += new DispatcherUnhandledExceptionEventHandler(AppDispatcherUnhandledException);
#else
            Application.Current.DispatcherUnhandledException += new DispatcherUnhandledExceptionEventHandler(AppDispatcherUnhandledException);
#endif
            new ProjectDeviceDatabaseView().Show();
            base.OnStartup(e);
            Settings.Default.Reload();
            DispatcherHelper.Initialize();  // allows messenger functionality between threads !
        }

        protected override void OnExit(ExitEventArgs e)
        {
            Settings.Default.Save();
            base.OnExit(e);
        }

    }
}
4

1 回答 1

0

确保您的AppApp.xaml.cs派生自System.Window.Application

public partial class App : System.Window.Application
...
于 2017-03-01T13:36:13.850 回答