在 WPF 中有很多方法可以实现相同的目标。在这个例子中哪个更好?
<ItemsControl>
<ItemsControl.Template>
<ControlTemplate>
<ScrollViewer>
<ItemsPresenter />
</ScrollViewer>
</ControlTemplate>
</ItemsControl.Template>
</ItemsControl>
或者
<ScrollViewer>
<ItemsControl />
</ScrollViewer>