1

にクラス呼び出しをBinaryImageConverter実装IValueConverterしていCommon.Toolsます。

どうすればWPFで呼び出すことができますか?

 <Window.Resources>
        <CollectionViewSource x:Key="ProductsSource"/>
        <local:BinaryImageConverter x:Key="ImgConverter" />
    </Window.Resources>

ありがとうございました。

4

1 に答える 1

2

prefixに定義を追加する必要がありWindowます。たとえば、名前空間がBinaryImageConverterisKevNameSapceで、そのアセンブリがのKevAssembly場合、xmal コードは次のようになります。

<Window xmlns:local="clr-namespace:KevNameSapce;assembly=KevAssembly">
    <Window.Resources> 
        ...
        <local:BinaryImageConverter x:Key="ImgConverter" /> 
    </Window.Resources>
</Window>

assemblyコンバーター クラスが同じプロジェクトにある場合は、指定する必要はありません。

于 2012-10-16T02:34:13.667 に答える