i’m developing a window form application.
i’m in need of placing custom control comprising of two labels within the cells of the datagrid view.
i have created the custom controls.Guide me to populate the cells with the custom control
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.
I think you want to create your own editing control which implements IDataGridViewEditingControl. See the msdn documentation for IDataGridViewEditingControl Interface. There is an example at the bottom.
After you create your own editing control, you may need to create something like this: How to: Host Controls in Windows Forms DataGridView Cells