Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 4
Form Class
Form Properties
 MinimumSize Property
Collapse All/Expand All Collapse All
.NET Framework Class Library
Form..::.MinimumSize Property

Gets or sets the minimum size the form can be resized to.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
Visual Basic
Public Overrides Property MinimumSize As Size
C#
public override Size MinimumSize { get; set; }
Visual C++
public:
virtual property Size MinimumSize {
    Size get () override;
    void set (Size value) override;
}
F#
abstract MinimumSize : Size with get, set
override MinimumSize : Size with get, set

Property Value

Type: System.Drawing..::.Size
A Size that represents the minimum size for the form.
ExceptionCondition
ArgumentOutOfRangeException

The values of the height or width within the Size object are less than zero.

This property enables you to limit the size of a form to a specified minimum size. You can use this feature to prevent a user from sizing a window to an undesirable size. If this property is set to a Size object that is 0 in height and 0 in width, the form will have no minimum size beyond the limits set by Windows.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
And the units of measure are...      spike0xff   |   Edit   |   Show History
what?
Tags What's this?: Add a tag
Flag as ContentBug
You need to create SIZE objects...      AxeManGa ... Thomas Lee   |   Edit   |   Show History
The Object Browser is not explicit about having to create SIZE objects, it says that the Width and Height objects take integers, which is not entirely true. This is some sample code which I use to unlock the size of a minimizable form:
Dim min As Size
Dim max As Size
min.Width = 0
min.Height = 0
max.Width = 0
max.Height = 0
Me.MinimumSize = min
Me.MaximumSize = max
Tags What's this?: Add a tag
Flag as ContentBug
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker