Form.SizeGripStyle Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the style of the size grip to display in the lower-right corner of the form.
public:
property System::Windows::Forms::SizeGripStyle SizeGripStyle { System::Windows::Forms::SizeGripStyle get(); void set(System::Windows::Forms::SizeGripStyle value); };
public System.Windows.Forms.SizeGripStyle SizeGripStyle { get; set; }
member this.SizeGripStyle : System.Windows.Forms.SizeGripStyle with get, set
Public Property SizeGripStyle As SizeGripStyle
Property Value
A SizeGripStyle that represents the style of the size grip to display. The default is Auto
Exceptions
The value specified is outside the range of valid values.
Examples
The following example demonstrates how to hide the size grip for a Form when the Form is not resizable.
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();
}
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();
}
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
Remarks
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.