我想要做的是将我的ViewModel
的属性绑定到XAML中的Behavior
。
首先,这里是我在Xaml中的行为代码。
<Interactivity:Interaction.Behaviors>
<common:FrameworkElementRenderTransformBehavior
WidthPercentage="1"
WidthMultiple="1"
HeightPercentage="1"
HeightMultiple="1"
RelativeHeight="{Binding RelativeHeight}"
RelativeWidth="{Binding RelativeWidth}"/>
</Interactivity:Interaction.Behaviors>
但我得到的只是Error
。我认为将属性绑定到行为是一个普遍的问题,但必须有一种简单的方法来执行此操作。
我接受了这个Example并且它运行良好,但正如我所说的不是Bindings。我刚刚添加了RelativeWidth
和RelativeHeight
。
答案 0 :(得分:0)
好吧我解决了。我接受了普通的属性而不是DependencyProperty。