WPF – How can I center all items in a WrapPanel?

The built in WrapPanel will not allow you to align its content – only itself. Here is a technique that allows you to set HorizontalContentAlignment: using System; using System.Windows; using System.Windows.Controls; public class AlignableWrapPanel : Panel { public HorizontalAlignment HorizontalContentAlignment { get { return (HorizontalAlignment)GetValue(HorizontalContentAlignmentProperty); } set { SetValue(HorizontalContentAlignmentProperty, value); } } public static readonly … Read more