File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
components/WrapPanel2/src Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ public partial class WrapPanel2
4646 /// <summary>
4747 /// Backing <see cref="DependencyProperty"/> for the <see cref="ItemJustification"/> property.
4848 /// </summary>
49- public static readonly DependencyProperty FixedRowLengthsProperty = DependencyProperty . Register (
49+ public static readonly DependencyProperty ItemJustificationProperty = DependencyProperty . Register (
5050 nameof ( ItemJustification ) ,
5151 typeof ( bool ) ,
5252 typeof ( WrapPanel2 ) ,
@@ -100,8 +100,8 @@ public double LineSpacing
100100 /// </remarks>
101101 public bool ItemJustification
102102 {
103- get => ( bool ) GetValue ( FixedRowLengthsProperty ) ;
104- set => SetValue ( FixedRowLengthsProperty , value ) ;
103+ get => ( bool ) GetValue ( ItemJustificationProperty ) ;
104+ set => SetValue ( ItemJustificationProperty , value ) ;
105105 }
106106
107107 /// <summary>
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public enum WrapPanelItemsStretch
2727 First ,
2828
2929 /// <summary>
30- /// Ehe last item in the row will be stretched to fill the row.
30+ /// The last item in the row will be stretched to fill the row.
3131 /// </summary>
3232 Last ,
3333
You can’t perform that action at this time.
0 commit comments