【问题标题】:XAML can't find the converter classXAML 找不到转换器类
【发布时间】:2012-04-20 02:38:07
【问题描述】:

我正在显示一个带有以下代码的弹出窗口:

<Popup PlacementTarget="{Binding ElementName=categoryTagEditorControl}"
       Placement="Bottom">
    <Popup.IsOpen>
        <MultiBinding Mode="OneWay" Converter="{StaticResource BooleanOrConverter}">
            <Binding Mode="OneWay" ElementName="categoryTagEditorControl" Path="IsMouseOver"/>
            <Binding RelativeSource="{RelativeSource Self}" Path="IsMouseOver" />
        </MultiBinding>
    </Popup.IsOpen>
    <StackPanel>
        <TextBox Text="Some Text.."/>
        <DatePicker/>
    </StackPanel>
</Popup>

BooleanOrConverter 的代码如下:

public class BooleanOrConverter : IMultiValueConverter
{
    public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        foreach (object booleanValue in values)
        {
            if (booleanValue is bool == false)
            {
                throw new ApplicationException("BooleanOrConverter only accepts boolean as datatype");
            }
            if ((bool)booleanValue == true)
            {
                return true;
            }
        }
        return false;
    }
    public object[] ConvertBack(object value, Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture)
    {
        throw new NotSupportedException();
    }
}

并将其放入 PopupTest.InfoPanels.Windows 命名空间

当我运行它时,我得到以下异常:

Cannot find resource named 'BooleanOrConverter'. Resource names are case sensitive.

我应该改变什么才能让它工作?

【问题讨论】:

  • 尝试将转换器类的对象添加到相关资源字典中,然后使用DynamicResource &lt;resource_id&gt;

标签: c# wpf xaml ivalueconverter


【解决方案1】:

听起来您的多重绑定不知道在哪里寻找转换器。您是否将转换器定义为staticresource?您可以在控件的资源或包含的ResourceDictionary 中指定转换器。添加对转换器命名空间的引用,然后为其定义一个 ResourceKey。比如:

<UserControl 
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
     xmlns:converters="clr-namespace:MyConverters">

     <UserControl.Resources>
          <converters:BooleanOrConverter x:Key="BoolOrConverter"/>
     </UserControl.Resources>

    ... // use converter as you were before

 </UserControl>

【讨论】:

  • 使用 。更改密钥只是为了避免混淆。
猜你喜欢
  • 2011-10-10
  • 1970-01-01
  • 2021-11-19
  • 2020-10-14
  • 2011-05-31
  • 2019-03-06
  • 2020-04-13
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多