We’re looking to replace DataGridView in our Winforms app. What are the alternatives – commercial or otherwise – that we ought to evaluate?
We’re looking to replace DataGridView in our Winforms app. What are the alternatives –
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Replacing the Grid is usually not fun…
You could try:
But first – evaluate your needs, see why the GridView is not giving you the desired results & then do a through technical analysis on these commercial products before making any changes to your code.
Also as a side-note: don’t directly use the vendor code & namespaces into your code, perhaps DI would be a better mechanism to abstract via a IGridView interface…
HTH.