Hi !
I would like to open/put a userControl inside a panel but when I try to do a “panel1.Controls.Add” nothing happen (please, see attateched sample). What I´m doing wrong ?
Best regards,
Fabio Marcos
Thank you, it´s working now.
Fabio,
your UserControl is missing a constructor. Add this to Page3:
public Page3() { InitializeComponent(); }
Best regards
Frank
Please login first to submit.