This topic has not yet been rated - Rate this topic

FrameworkElement.MinWidth Property

Gets or sets the minimum width constraint of a FrameworkElement.

Namespace:  System.Windows
Assembly:  System.Windows (in System.Windows.dll)
public double MinWidth { get; set; }
<frameworkElement MinWidth="double"/>

Property Value

Type: System.Double
The minimum width of the object, in 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: MinWidthProperty

This is one of three properties on FrameworkElement that specify width information. The other two are Width and MaxWidth. If there is a conflict between these values, the order of application for actual width determination is first MinWidth must be honored, then MaxWidth, and finally if each of these are within bounds, Width.

Non-integral values for MaxWidth are technically permitted, but should generally be avoided and are normally rounded by the default layout rounding behavior. See Layout Rounding.

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.