我在dll文件MicroMVVM中有一个EnumToBool Converter类。我想在WPF应用程序的XAML中导入并创建此类的资源。以下是我在XAML中的声明:
<Window x:Class="WpfMVVM.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:local="clr-namespace:WpfMVVM"
xmlns:micro="clr-namespace:MicroMVVM;assembly=MicroMVVM"
Title="MainWindow" Height="350" Width="525" ContentRendered="Window_ContentRendered">
<Window.DataContext>
<!-- Declaratively create an instance of our SongViewModel -->
<local:SabrixQAViewModel />
</Window.DataContext>
<Window.Resources>
<micro:EnumToBoolExtension x:Key="EnumToBool" />
</Window.Resources>
我在“ clr-命名空间”中遇到错误。错误为“未定义的CLR名称空间。'clr-namespace'URI引用程序集中未包含的名称空间'MicroMVVM'。
我在解决方案中添加了MicroMVVM.dll的引用,并且在ViewModel中使用了dll的其他类。但是,尝试在XAML中使用它时出现错误。请帮忙。
以下是Converter类在MicroMVVM内部的外观:
namespace MicroMvvm
{
public enum ValidationMode
{
GSS,
Digital
}
[ValueConversion(typeof(bool), typeof(Enum))] //This is converting boolean value to a value in Enum
public class EnumToBoolExtension : MarkupExtension, IValueConverter
{
#region IValueConverter
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return parameter.Equals(value);
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return ((bool)value) == true ? parameter : DependencyProperty.UnsetValue;
}
#endregion
#region MarkupExtension
public override object ProvideValue(IServiceProvider serviceProvider)
{
return this;
}
#endregion
}
}
最佳答案
尝试更改此:
xmlns:micro="clr-namespace:MicroMVVM; assembly=MicroMVVM"
至:
xmlns:micro="clr-namespace:MicroMvvm;assembly=MicroMVVM"