0

我想要做的是将我的一个属性绑定ViewModelBehaviorXAML 中的一个。

所以首先这里是我的 Xaml 行为代码。

<Interactivity:Interaction.Behaviors>
    <common:FrameworkElementRenderTransformBehavior
                                   WidthPercentage="1"
                                   WidthMultiple="1"
                                   HeightPercentage="1"
                                   HeightMultiple="1"
                                   RelativeHeight="{Binding RelativeHeight}"
                                   RelativeWidth="{Binding RelativeWidth}"/>
</Interactivity:Interaction.Behaviors>

但我得到的只是一个Error. 我认为将 aa 属性绑定到行为是一个普遍的问题,但必须有一种简单的方法来做到这一点。

我采用了这个示例,它运行良好,但正如我所说的那样,不能使用绑定。我刚刚添加了RelativeWidthRelativeHeight

4

1 回答 1

0

好吧,我解决了。我采用了普通属性而不是 DependencyPropertys。

于 2014-10-12T20:22:04.413 回答