can we create above type like datagridview in C#.net Windows Form Application.If not possible provide suitable solution for that
Loading
can we create above type like datagridview in C#.net Windows Form Application.If not possible provide suitable solution for that
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rajanikant HawaldarPosted Jun 20, 2024, 7:25 AM
check below article
https://www.c-sharpcorner.com/UploadFile/asmabegam/creating-dynamic-datagridview-using-helper-class/
achieving on Paint event also possible
Jayraj ChhayaPosted Jun 19, 2024, 9:14 AM
Yes, it is possible to create a custom data grid view in a C#.NET Windows Form Application that resembles the attached model. One approach is to subclass the DataGridView control and customize its appearance and behavior to match the desired design. By overriding the default rendering methods and implementing custom painting logic, you can achieve a unique look for your data grid view.