ScrollViewer.IsZoomInertiaEnabled 属性

定义

获取或设置一个值,该值指示缩放操作的行为和值是否应包括惯性。

public:
 property bool IsZoomInertiaEnabled { bool get(); void set(bool value); };
bool IsZoomInertiaEnabled();

void IsZoomInertiaEnabled(bool value);
public bool IsZoomInertiaEnabled { get; set; }
var boolean = scrollViewer.isZoomInertiaEnabled;
scrollViewer.isZoomInertiaEnabled = boolean;
Public Property IsZoomInertiaEnabled As Boolean
<ScrollViewer IsZoomInertiaEnabled="bool" />
-or-
<object ScrollViewer.IsZoomInertiaEnabled="bool"/>

属性值

Boolean

bool

如果缩放操作的行为和值中应包含惯性,则为 true;否则为 false

注解

对于 XAML 用法,IsZoomInertiaEnabled 可以是显式 ScrollViewer 元素上的属性,也可以是在其模板中隐式支持 scrollview 的控件的子元素上的 ScrollViewer.IsZoomInertiaEnabled 附加属性用法。

适用于

另请参阅