BrightIdeasSoftware.ObjectListView.OnControlCreated C# (CSharp) Method

OnControlCreated() protected method

This method is called after the control has been fully created.
protected OnControlCreated ( ) : void
return void
        protected virtual void OnControlCreated()
        {
            // Force the header control to be created when the listview handle is
            HeaderControl hc = this.HeaderControl;
            hc.WordWrap = this.HeaderWordWrap;

            // Make sure any overlays that are set on the hot item style take effect
            this.HotItemStyle = this.HotItemStyle;

            // Arrange for any group images to be installed after the control is created
            int x = NativeMethods.SetGroupImageList(this, this.GroupImageList);

            this.UseExplorerTheme = this.UseExplorerTheme;

            this.RememberDisplayIndicies();
            this.SetGroupSpacing();
        }
ObjectListView