FrameworkElement.MinHeight Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets or sets the minimum height constraint of a FrameworkElement.
Assembly: System.Windows (in System.Windows.dll)
XMLNS for XAML: Not mapped to an xmlns.
<frameworkElement MinHeight="double"/>
Property Value
Type: System.DoubleThe minimum height of the element, in logical pixels. The default is 0. This value can be any value equal to or greater than 0. However, PositiveInfinity is not valid.
Dependency property identifier field: MinHeightProperty
This is one of three properties on FrameworkElement that specify height information. The other two are Height and MaxHeight. If there is a conflict between these values, the order of application for actual height determination is first MinHeight must be honored, then MaxHeight, and finally if each of these are within bounds, Height.
Non-integral values for MinHeight are technically permitted, but should generally be avoided and are normally rounded by the default layout rounding behavior.