This property sets the controls that will be excluded from resizing.
[Visual Basic]Public Property NoResizeControls As String()
[C#]public string[] NoResizeControls {get; set;}
Property Value
Array of string type values representing control names
Default value is Nothing/null
Explanation
The NoResizeControls property refers to a control that does not resize even though the form is resized.
Control names which do not resize are set as an array of character strings. If the ResizeEnabled property is False, all controls will not be resized regardless of the value in this property.