ScrollViewer.IsScrollInertiaEnabled 属性

定义

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

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

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

属性值

Boolean

bool

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

注解

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

适用于

另请参阅