gpt4 book ai didi

wpf - MVVM Light - PCL+WPF - 获取 Microsoft.Practices.ServiceLocation.ActivationException 类型的异常

转载 作者:行者123 更新时间:2023-12-04 12:52:51 25 4
gpt4 key购买 nike

背景

嗨,所有 SO 观众。我通常是一名 Android 开发人员,但现在我正在开发一个针对 WPF 和 Android 的跨平台应用程序。话虽如此,实际上没有关于如何直接做我想做的事情的信息。因此,我最终找到了一个由 3 部分组成的博客系列,该系列深入探讨了如何开发基于 Windows 的跨平台 MVVM 项目。只要我将 PCL 设置为与 Xamarin.Android 兼容,任何不会引发错误的代码都应该在我使用 Android 方面工作。以下是博客文章的链接:Blog 1 , Blog 2 , Blog 3 .同样,我使用 Android,所以我是为 WPF 应用程序编写代码的新手。

问题

所以我今天的问题只涉及与上述链接的博客文章相关的 PCL-WPF 方面。我尽可能地遵循帖子中列出的每一步。该博客使用 WinRT 和 WinPhone 作为两个目标平台,所以我不得不尝试自己解决问题,以使事情在 WPF 上运行。我必须做的两件事是使用 IsolatedStorage并且基本上使用 WinPhone App.Xaml使 WPF 端构建。

我已经完成了博客一直到最后并且构建成功。我什至可以看到我的示例调试行,就像它在第三篇博文末尾谈到的那样。但是,当我运行它时,我得到以下信息:

ActivationException was unhandled by user code

An exception of type 'Microsoft.Practices.ServiceLocation.ActivationException' occurred in GalaSoft.MvvmLight.Extras.dll but was not handled in user code

$exception {Microsoft.Practices.ServiceLocation.ActivationException: Type not found in cache: StackOverF.Services.IStorageService. at GalaSoft.MvvmLight.Ioc.SimpleIoc.DoGetService(Type serviceType, String key, Boolean cache) in c:\MvvmLight\Source\GalaSoft.MvvmLight\GalaSoft.MvvmLight.Extras (PCL)\Ioc\SimpleIoc.cs:line 537 at GalaSoft.MvvmLight.Ioc.SimpleIoc.GetService(Type serviceType) in c:\MvvmLight\Source\GalaSoft.MvvmLight\GalaSoft.MvvmLight.Extras (PCL)\Ioc\SimpleIoc.cs:line 789 at GalaSoft.MvvmLight.Ioc.SimpleIoc.MakeInstanceTClass in c:\MvvmLight\Source\GalaSoft.MvvmLight\GalaSoft.MvvmLight.Extras (PCL)\Ioc\SimpleIoc.cs:line 729} System.Exception {Microsoft.Practices.ServiceLocation.ActivationException}



你们有什么可以告诉我的,也许博客作者跳过了我需要做的事情吗?也许如果向这 block “巨石”扔足够多的石头,它就会裂开……

澄清

我的 Visual Studio 解决方案中目前基本上只有两个项目。一种是可移植类库。另一个是 WPF 应用程序。在不久的将来,一旦我在等式的 WPF 方面开始工作,我将使用 Xamarin 中的 PCL 在 Android 项目中重用代码。不过Android端是 不是 我的问题的一部分在这里。我只在处理 WPF 项目时遇到了上述问题。

代码(最后编辑于 2016 年 2 月 18 日)

IMainViewModel.cs
using GalaSoft.MvvmLight.Command;
using StackOverF.Models;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace StackOverF.ViewModels {
public interface IMainViewModel {
ObservableCollection<Workload> Workload { get; }

RelayCommand RefreshCommand { get; }
RelayCommand AddCommand { get; }
}
}

MainViewModel.cs
using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Command;
using StackOverF.Models;
using StackOverF.Services;
using System;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;


namespace StackOverF.ViewModels {
public class MainViewModel : ViewModelBase,IMainViewModel {

private IDataService dataService;

public MainViewModel(IDataService dataService) {
this.dataService = dataService;

RefreshAsync();
}

private ObservableCollection<Workload> workload = new ObservableCollection<Workload>();
public ObservableCollection<Workload> Workload {
get {
return workload;
}
}

#region Commands

#region Refresh
private RelayCommand refreshCommand;
public RelayCommand RefreshCommand {
get {
return refreshCommand ?? (refreshCommand = new RelayCommand(async () => { await RefreshAsync();}));
}
}

private async Task RefreshAsync() {
workload.Clear();
foreach (Workload listing in await dataService.GetWorkloadAsync()) {
workload.Add(listing);
}
}
#endregion

#region Add
private RelayCommand addCommand;
public RelayCommand AddCommand {
get {
return addCommand ??
(addCommand = new RelayCommand(async () => {
Workload listing = new Workload() { Id = 3, Serial = "relay12" };
await dataService.AddWorkloadAsync(listing);
workload.Add(listing);
}));
}
}
#endregion

#endregion
}
}

LocatorService.cs(DeviceLocatorService,位于 WPF 项目中)
using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Ioc;
using Microsoft.Practices.ServiceLocation;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace StackOverF.Services {
public class DeviceLocatorService {
static DeviceLocatorService() {
ServiceLocator.SetLocatorProvider(() => SimpleIoc.Default);

if (ViewModelBase.IsInDesignModeStatic) {
}
else {
}

if (!SimpleIoc.Default.IsRegistered<IStorageService>())
SimpleIoc.Default.Register<IStorageService, StorageService>();
}

public static void Cleanup() {
}
}
}

LocatorService.cs(LocatorService,位于PCL项目中)
using Microsoft.Practices.ServiceLocation;
using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Ioc;
using StackOverF.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace StackOverF.Services {
public class LocatorService {
static LocatorService() {
ServiceLocator.SetLocatorProvider(() => SimpleIoc.Default);


// Services
if (ViewModelBase.IsInDesignModeStatic) {
SimpleIoc.Default.Register<IDataService, Design.DataService>();
}
else {
SimpleIoc.Default.Register<IDataService, Services.DataService>();
}

// View Models
SimpleIoc.Default.Register<IMainViewModel, MainViewModel>();
}

public IMainViewModel MainViewModel {
get {
return ServiceLocator.Current.GetInstance<IMainViewModel>();
}
}

public static void Cleanup() {
}
}
}

它在 return ServiceLocator.Current.GetInstance<IMainViewModel>(); 上出错(仅在调试时)线。

应用程序.xaml
<Application x:Class="StackOverF.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
xmlns:services="clr-namespace:StackOverF.Services;assembly=StackOverF.PCL"
xmlns:deviceServices="clr-namespace:StackOverF.Services"
StartupUri="Views/MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<deviceServices:DeviceLocatorService x:Key="Locator.WPF" d:IsDataSource="True" />
<services:LocatorService x:Key="Locator" d:IsDataSource="True" />
</ResourceDictionary>
</Application.Resources>
</Application>

最佳答案

我的问题的解决方案比人们想象的要简单。 WPF应用程序使用 MVVM 没有问题工具包/框架,但它们似乎确实存在共享问题。由于WPF并非旨在成为跨平台友好的语言,因此编写此类内容的“正确”方式将不适用于它。

试图同时包含 LocatorService App.xaml 中的类期待 WPF运行两个类,如 WinRTWinPhone可能。 WPF如果需要数据,似乎只引用一个类。就像在博客的例子中一样,我在 Main.xaml绑定(bind)到 LocatorService 的数据类(class)。由于WPF应用程序只运行该类的代码,它会抛出错误。

解决方案是结合 LocatorService文件合并到一个文件中,在 WPF 上项目方。为什么在 WPF你问一边?一个 Portable Class Library应该只包含通用代码,可跨平台共享。

关于wpf - MVVM Light - PCL+WPF - 获取 Microsoft.Practices.ServiceLocation.ActivationException 类型的异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35419503/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com