I need to create a sort of a dialog box or something like a popup screen. I have this array of items and then I need to create a buttons for each of them on the dialogbox so that i could navigate with a button click.
Whats the best way to do it in C#? can someone guide me on this please
If you are using winforms, then place
FlowLayoutPanelon your form. Then add all controls to it at runtime.FlowLayoutPanel will arrange your controls automatically.