diff --git a/src/Controls/Foldable/src/TwoPaneView.cs b/src/Controls/Foldable/src/TwoPaneView.cs
index b5d0dfb52375..ecd35d114895 100644
--- a/src/Controls/Foldable/src/TwoPaneView.cs
+++ b/src/Controls/Foldable/src/TwoPaneView.cs
@@ -142,6 +142,7 @@ public double MinWideModeWidth
///
/// Gets the calculated width (in wide mode) or height (in tall mode) of pane 1, or sets the GridLength value of pane 1.
///
+ [System.ComponentModel.TypeConverter(typeof(GridLengthTypeConverter))]
public GridLength Pane1Length
{
get { return (GridLength)GetValue(Pane1LengthProperty); }
@@ -151,6 +152,7 @@ public GridLength Pane1Length
///
/// Gets the calculated width (in wide mode) or height (in tall mode) of pane 2, or sets the GridLength value of pane 2.
///
+ [System.ComponentModel.TypeConverter(typeof(GridLengthTypeConverter))]
public GridLength Pane2Length
{
get { return (GridLength)GetValue(Pane2LengthProperty); }