如何绑定到float2

时间:2014-09-30 22:18:57

标签: wpf data-binding binding wpf-controls

我试过这些:

<effects:HighPass InputSize="{Binding Width},{Binding Height}"/>

<effects:HighPass InputSize="{Binding Width} {Binding Height}"/>

<effects:HighPass InputSize="{Binding Width Height}"/>

但它们都不起作用。

但是,如果我直接传递这样的值:

<effects:HighPass InputSize="512.0,256.0"/>

它有效。

1 个答案:

答案 0 :(得分:0)

请尝试以下代码。

<effects:HighPass>
       <effects:HighPass.InputSize Width="{Binding Width}" Height={Binding Height} />
 </effects:HighPass>

希望这有帮助。