[SOLVED] Panel in datagridview Cell with paint event

Answered
0
0

Hi,

 

Is it possible to add a Panel Control inside a cell (like you do with the chart control in your example?

 

Thanks.

 

  • You must to post comments
Best Answer
0
0

Hi Ricardo,

do you mean something like that?

Snippet

grid.Rows[0][0].Control = new UserControl1();

While UserControl1 can be any Control, also a Panel.
Here https://wisej.com/support/question/datagridview-cell-merge
you can find an example.

Best,
Jens<

  • Ricardo Nogueiar
    Hi Jens, Perfect! Is exactly that. Thank you!
  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.