WPF Grid.IsSharedSizeScope in ItemsControl and ScrollViewer
问题 I'm simplyfying this log viewer. It works mostly as expected, but somehow the column lengths don't share the same size. Here is my code: <Window.Resources> <local:IsGreaterThanConverter x:Key="IsGreaterThanConverter" /> <sys:Int32 x:Key="MaxDisplayLineLength">200</sys:Int32> <Style TargetType="ItemsControl" x:Key="LogViewerStyle"> <Setter Property="Template"> <Setter.Value> <ControlTemplate> <ScrollViewer CanContentScroll="True"> <ItemsPresenter/> </ScrollViewer> </ControlTemplate> </Setter