I am new to C#. I am currently learning how to write a window form application. I want to export some of my data from my form to an Excel file.
I am wondering what is the best way to approach this problem?
I have looked through many tutorial site and YouTube video and most of them suggest to use a data grid view. One thing I notice is that datagridview work well with simple GUI layout like the textbox.
However, what if I have some other complicated components such as a checkbox and a comboBox in my form?
Data grid view seems not the best option to do it. Are there any other better solutions to this case?