ComponentFactory.Krypton.Docking.KryptonDockingFloating.KryptonDockingFloating C# (CSharp) Method

KryptonDockingFloating() public method

Initialize a new instance of the KryptonDockingFloating class.
public KryptonDockingFloating ( string name, Form ownerForm ) : System
name string Initial name of the element.
ownerForm System.Windows.Forms.Form Reference to form that will own all the floating windows.
return System
        public KryptonDockingFloating(string name, Form ownerForm)
            : base(name)
        {
            if (ownerForm == null)
                throw new ArgumentNullException("owner");

            _ownerForm = ownerForm;
        }