如何从TranslateZoomRotateBehavior禁用旋转手势

时间:2018-06-23 06:48:29

标签: c# wpf

TranslateZoomRotateBehavior控件具有以下受支持的手势:

  • 全部
  • TranslateX
  • TranslateY
  • 翻译
  • 旋转
  • 规模
  • 没有

除了旋转以外,我想使用所有手势。有没有办法覆盖控件?

1 个答案:

答案 0 :(得分:0)

我已经知道了。您只需要从SupportedGestures属性设置多个值:

<i:Interaction.Behaviors>
    <ei:TranslateZoomRotateBehavior MaximumScale="3" MinimumScale="1" 
        SupportedGestures="Scale, Translate" ConstrainToParentBounds="True"/>
</i:Interaction.Behaviors>