Is there a way to "lock" the last item in the ListView that is always displayed?
I am listing folders and folder sizes in a ListView for a VB.NET WinForm program I am writing. I would like to specify the sizes of the folders in the last entry of the ListView and the "lock" it shows always shows (even if scrolling through the list.
Is there a way to do this? I would really like to avoid adding another control to the Windows Form to display the total.
EDIT: Space is a bit of a problem as I try to keep this window small enough to run at a minimum screen resolution of 800x600 (I know waaaaay is not a standard, but I want to make it accessible even for older people with vision problems ...
Thanks!
-JFV
a source to share
There seem to be ways to do this in Webforms and WPF, but not Winforms. You should probably be using a textbox. Any attempt to hack a fixed total string will certainly be much more difficult than the benefits obtained. This is definitely beyond my capabilities. Even specialty stores like Telerik don't seem to do this.
http://www.telerik.com/products/winforms/gridview.aspx
If you're concerned about space, make the gridview a little smaller to accommodate the text box.
a source to share