I have been trying to figure out a way to make the height of the NlistView dynamic. the data going into the NListView is dynamic.
Is this possible or am i out of luck?
Jody
p.s. your controls are awesome.
Hi Jody,
In this case you will need to setup the Size property of the NListView control.
The value of the height should be the height of the items multiply to the number of the items plus one, and also you will need to add the height of the header.
The above apply if the control is in Details view, because otherwise the items may resizes in multiple columns.
Here is the code sample:
Rectangle
nListView1.Size = size;
Regards,
Angel.