@@ -50,6 +50,11 @@ public class Slider<T> : View
SetDefaultStyle ();
SetCommands ();
+ SetContentSize ();
+
+ // BUGBUG: This should not be needed - Need to ensure SetRelativeLayout gets called during EndInit
+ Initialized += (s, e) => { SetContentSize (); };
LayoutStarted += (s, e) => { SetContentSize (); };
}