I'm going create an open source Help desk solution free of charge for small to medium businesses to use.
I'm currently working on the client application.
I want to have a list of tickets that have been opened by the user. So it would be like a table TicketsByUser:
Ticket Number | Type | Description | Date | Handled?
123456 | Hardware | My mouse broke | 10/20/2010 | No
123457 | software | Opera broke | 10/20/2010 | Yes
I was thinking of using ListView because of it's name, but I have zero experience with it, so maybe it's not what I'm looking for.
I'm going to be pulling the data from a WCF service which in turn pulls it from a MS SQL database.
Edit: All information is going to be modified (really only the Handled option though) on the Server (IT helper guy) side.
The client cannot modify anything, it's meant as only a Windows to view previous tickets. :) Taking that into account, what would you guys recommend?