Microsoft.ManagementConsole.PropertyPage.InternalInitialize C# (CSharp) Method

InternalInitialize() private method

private InternalInitialize ( ) : void
return void
        internal void InternalInitialize()
        {
            this._containerControl = new PropertyPageContainerControl(this);
            if (this._containerControl == null)
            {
                throw new InvalidOperationException(Microsoft.ManagementConsole.Internal.Utility.LoadResourceString(Microsoft.ManagementConsole.Internal.Strings.PropertyPageInternalInitializeNullContainer));
            }
            this._containerControl.Dock = DockStyle.Fill;
            this._containerControl.HandleCreated += new EventHandler(this.OnHandleCreated);
            this._containerControl.Controls.Add(this.Control);
            this._containerControl.CreateControl();
            this._initialized = true;
            this.OnInitialize();
        }