I have a flowlayoupanel
in which buttons are added dynamically. This is done with the simple code that we all know:
flowLayoutPanel1.Controls.Add(boton);
However, if you set the Add method, you can not specify a cell as tabletlayoutpanel
, how can I tell you by code to add a button in such part of the flowlayoutpanael
? without adding it up or down as stipulated by its attribute flowdirection
?