2014-10-20 38 views
1

我有一個ContentPresenter,具有這種結合:如何將轉換器附加到此(短手?)裝訂?

<ContentPresenter Content="{Binding}"/> 

添加一個轉換器,像這樣失敗:

<ContentPresenter Content="{Binding, Converter={StaticResource DummyConverter}}"/> 

錯誤:The character "," is unexpected at this position.

這可能是一個愚蠢的問題,但我不能找到答案:{Binding}是什麼東西的縮寫(以便我可以將轉換器附加到完整的表達式)?如果不是,我該如何連接一個轉換器?

回答

4

您既可以只下降了逗號:

<ContentPresenter Content="{Binding Converter={StaticResource DummyConverter}}"/> 

或明確的路徑設置爲源對象:

<ContentPresenter Content="{Binding Path=., 
            Converter={StaticResource DummyConverter}}"/> 
+0

那是太容易不被尷尬。謝謝! – 2014-10-20 12:55:45