我想要做的是将我的一个属性绑定ViewModel
到Behavior
XAML 中的一个。
所以首先这里是我的 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 属性绑定到行为是一个普遍的问题,但必须有一种简单的方法来做到这一点。
我采用了这个示例,它运行良好,但正如我所说的那样,不能使用绑定。我刚刚添加了RelativeWidth
和RelativeHeight
。