BrightIdeasSoftware.ObjectListView.SetupSubItemCheckBoxes C# (CSharp) Method

SetupSubItemCheckBoxes() public method

Setup this control so it can display check boxes on subitems (or primary checkboxes in virtual mode)
This gives the ListView a small image list, if it doesn't already have one.
public SetupSubItemCheckBoxes ( ) : void
return void
        public virtual void SetupSubItemCheckBoxes()
        {
            this.ShowImagesOnSubItems = true;
            if (this.SmallImageList == null || !this.SmallImageList.Images.ContainsKey(CHECKED_KEY))
                this.InitializeCheckBoxImages();
        }
ObjectListView