I am noob .NET programmer so I tried to use ListView and display my items which I read from database. I tried to create column headers but the property Column is not available in System.Windows.Controls.ListView and it is in Forms.ListView.
Can somebody tell me that is the difference and which should I use where?
Should I use Controls.ListView or should I use Forms.ListView in WPF?
I want my app to be full WPF developed and avoid using WinForms. I want to have full control of the GUI interface and don't bother resizing WinForms with code and maths.
In the end I just want to display a read-only table data from database and it should be able to resize to full screen and backwards, with scrollbars, etc...