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

Gets or sets the style of the size grip to display in the lower-right corner of the form.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
Visual Basic
Public Property SizeGripStyle As SizeGripStyle
C#
public SizeGripStyle SizeGripStyle { get; set; }
Visual C++
public:
property SizeGripStyle SizeGripStyle {
    SizeGripStyle get ();
    void set (SizeGripStyle value);
}
F#
member SizeGripStyle : SizeGripStyle with get, set

Property Value

Type: System.Windows.Forms..::.SizeGripStyle
A SizeGripStyle that represents the style of the size grip to display. The default is SizeGripStyle..::.Auto
ExceptionCondition
InvalidEnumArgumentException

The value specified is outside the range of valid values.

This property enables you to determine when the sizing grip is displayed on the form. You can set this property to display the sizing grip or have it automatically displayed based on the setting of the FormBorderStyle property.

The following code example demonstrates how to hide the size grip for a Form when the Form is not resizable.

Visual Basic
Private Sub ShowMyDialogBox()
    Dim myForm As New Form()
    myForm.Text = "My Form"
    myForm.SetBounds(20, 20, 300, 300)
    myForm.FormBorderStyle = FormBorderStyle.FixedDialog

    ' Display the form with no grip since form is not resizable.
    myForm.SizeGripStyle = SizeGripStyle.Hide

    myForm.MinimizeBox = False
    myForm.MaximizeBox = False
    myForm.ShowDialog()
End Sub
C#
        private void ShowMyDialogBox()
        {
            Form myForm = new Form();
            myForm.Text = "My Form";
            myForm.SetBounds(20,20,300,300);
            myForm.FormBorderStyle = FormBorderStyle.FixedDialog;
            
            // Display the form with no grip since form is not resizable.
            myForm.SizeGripStyle = SizeGripStyle.Hide;

            myForm.MinimizeBox = false;
            myForm.MaximizeBox = false;
            myForm.ShowDialog();
        }
Visual C++
private:
   void ShowMyDialogBox()
   {
      Form^ myForm = gcnew Form;
      myForm->Text = "My Form";
      myForm->SetBounds( 20, 20, 300, 300 );
      myForm->FormBorderStyle = ::FormBorderStyle::FixedDialog;

      // Display the form with no grip since form is not resizable.
      myForm->SizeGripStyle = ::SizeGripStyle::Hide;
      myForm->MinimizeBox = false;
      myForm->MaximizeBox = false;
      myForm->ShowDialog();
   }

.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
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker