ScrollViewer.IsScrollInertiaEnabled 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示滚动操作是否应在其行为和值中包含惯性。
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 元素上的属性,也可以是 元素上的 ScrollViewer.IsScrollInertiaEnabled 附加属性用法,该元素是在其模板中隐式支持 scrollview 的控件的子级。