I had to do this way: private void treeListView_CellEditStarting(object sender, CellEditEventArgs e) { ..... e.Control.SetBounds(e.CellBounds.X, e.CellBounds.Y, e.CellBounds.Width, e.CellBounds.Height - 2); ...... }
Hi Phillip, Any updates for me? Regards, Alex.
No, I haven't. For check this I download the ObjectListViewFull-2.9.1.zip again and compare all files. The only files differ from original I sent you previously. My environment: Win7, Visual Studio 2017, ObjectListView was installed by NuGet as ObjectListView.Official (v2.9.1)
Hello, I need to hide checkboxes only from specified rows. Could you please explain how I can do it? Thank you! With reagrds, Alex.
These are two files I modified in standard Demo (from ObjectListViewFull-2.9.1.zip) for you can reproduce the issue on your side.
error pic 1 error pic 2
issue with CellEditUseWholeCell on TreeListView
Hi, I am creating an application that uses the TreeListView (from ObjectListView) and I'd like to have the column with checkboxes. Apart from that there are other several columns before checkboxes-column. I've created column in designer and specified CheckBoxes = True exactly for this column. The property UseSubItemCheckBoxes of TreeListView is False. There is delegate AspectGetter for this column. As usually there is delegate this.treeListView.ChildrenGetter... I faced the weird behavior of the...