In Xamarin.Forms, I want to be able to set the exact height for a control whose height is initially determined using only VerticalLayoutOptions (in this case FillAndExpand), and then at a later point reset the height of the control for automatic detection.
In regular XAML, this can be done using double.Nan, but the following causes an exception:
control.HeightRequest = double.NaN
How do you set the HeightRequest value for self-determination?
xaml xamarin xamarin.forms xamarin-studio
James mundy
source share