1
this blogの指示に従って、ScrollIntoView
をItemsControl
に追加しました。WPF:ItemsControlのボーダーが表示されない
しかし、これは境界線が見えなくなります:
<ItemsControl BorderBrush="Black"
BorderThickness="3">
<ItemsControl.Template>
<ControlTemplate>
<ScrollViewer Padding="{TemplateBinding Padding}">
<ItemsPresenter />
</ScrollViewer>
</ControlTemplate>
</ItemsControl.Template>
<TextBlock Text="Test" />
<TextBlock Text="Test" />
<TextBlock Text="Test" />
</ItemsControl>
境界線を表示するためには、私は削除する必要があります:
<ItemsControl.Template>
<ControlTemplate>
<ScrollViewer Padding="{TemplateBinding Padding}">
<ItemsPresenter />
</ScrollViewer>
</ControlTemplate>
</ItemsControl.Template>
をしかし、この方法は私がScrollIntoView
を使用することはできません方法。
アイデア?ありがとう
ありがとうございます! –