How to remove an extra column as a list

In WindowView ListView, I dynamically add columns, but I have an extra column. How to remove it? Which property can be set?

Please view the attached screenshot below.

My listview

I added a total of 5 columns. After the column "Title of approval" is another.

+4
source share
1 answer

This is the default behavior of a ListView control. There are many solutions to configure / work with it. One of the ones I used is this post (it essentially revolves around setting the last column width to -2), where the last column is stretched to fill the remaining space. Another solution is to manually split the width of the list view among the columns.

+5
source

All Articles