值转换器未在XAML类中解析

时间:2013-12-12 04:49:16

标签: c# wpf xaml windows-phone-8 ivalueconverter

我有一个与不是UserControl后代的类关联的XAML文件。我正在尝试使用值转换器将字符串转换为POCO。这个问题是我似乎无法将转换器作为静态资源获取。我收到以下错误:

The resource "myConverter" could not be resolved.

有什么想法吗?

XAML

<blst:StreamFactory
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"       
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:blst="clr-namespace:myNamespace">

    <blst:StreamFactory.Resources>
        <blst:StreamFormatConverter x:Key="MyConverter"/>
    </blst:StreamFactory.Resources>

    <blst:StreamFactory.AvailableStreams>
        <blst:StreamInfo>
            <blst:StreamInfo.Format>
                <Binding Converter="{StaticResource MyConverter}" ConverterParameter="MP3"/>
            </blst:StreamInfo.Format>
        </blst:StreamInfo>
    </blst:StreamFactory.AvailableStreams>

</blst:StreamFactory>

C#

class StreamFactory
    {
        public ResourceDictionary Resources { get; set; }

        public List<StreamInfo> AvailableStreams { get; private set; }
    }

1 个答案:

答案 0 :(得分:0)

在此xaml之外声明StreamFormatConverter。例如:在App.xaml中。我认为您的Resources不喜欢UserControl.Resources。它可能没有加载到内存中。