Initializes a new instance of the ResizeKit class.
[Visual Basic]Public Sub New()
[C#]public ResizeKit()
Explanation
Placing the ResizeKit control on a form will create an instance of the ResizeKit. It is also possible to create an instance of the ResizeKit using code (without placing the control on the form). Instances can be created in this way when using MDI child forms etc.
Example
Place the following code within the Form Load event
[Visual Basic.NET] Dim rk = New Newtone.ResizeKitNETX.ResizeKit() Me.Controls.Add(rk) [Visual C#.NET] Newtone.ResizeKitNETX.ResizeKit rk = new Newtone.ResizeKitNETX.ResizeKit(); this.Controls.Add(rk);