C# Forms Help on ListView Items etc.
So I need to know how to Select a column in c#
And is there a better way to add new Items into the Listview, because when I start the Program there is a Column already in the Listview and I can select it. How do I get rid of it.
5 Replies
what does "there is a column already" mean
Do u see in the screenshot of the listview the selected item? that is what I mean
Why dont you use BindingList<T> and DataGridView instead?
and u only have to manipulate the BindingList and you can use a class to represent your data
so you can easily save it later or do w/e