作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据 this thread 末尾的帖子您可以更换 ScrollViewer
的 ListBox
与 ContentPresenter
在嵌套场景中禁用滚动。
但是,我不知道如何替换ScrollViewer
.我必须重新创建模板吗?
最佳答案
是的,您需要分配自己的模板,但您将使用 ItemsPresenter,而不是 ContentPresenter。 ListBox 的默认模板包括一个环绕其 ItemsPresenter 的 ScrollViewer。通过制作模板的副本,您可以删除 ScrollViewer 并保持模板的其余部分(和行为)完好无损。这是没有 ScrollViewer 的默认模板(如果需要,您也可以删除 IsGrouping 触发器):
<ControlTemplate TargetType="{x:Type ListBox}">
<Border x:Name="Bd" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" Padding="1" SnapsToDevicePixels="true">
<ItemsPresenter SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsEnabled" Value="false">
<Setter Property="Background" TargetName="Bd" Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}"/>
</Trigger>
<Trigger Property="IsGrouping" Value="true">
<Setter Property="ScrollViewer.CanContentScroll" Value="false"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
关于wpf - 如何用 ListBox 上的 ContentPresenter 替换 ScrollViewer?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3490217/
我是一名优秀的程序员,十分优秀!