Hi all!
I'm working on a C# application and need to give the users a user-friendly environment to work in. The idea is that a user uses his/her id and password so only data relevant to the user will show up in a table. I've figured out how to do this but now the user needs to be able to edit the contents of the table and since it's all about giving the user that friendly looking interface.
What table-like component should I use to achieve this? I need to be able to load in data and save the edited data back into the database but I also need to be able to assign colours to individual cells and borders to make it look more user-friendly. Also I prefer a click-and-edit way of editing the table contents.
I already tried using the DataGridView but it fell short on customizing it's appearance.
Is there another good .net component I can make use of to achieve this?
EDIT: It's a windows Forms desktop application.