0
Data parse Form to UserControl in Windows Form?
I need to know the way of parse variable data "Form" to "UserControl" in windows form application? What is the best way? any solution, please.
1 Answer
0
The Form class is inherited from Control class so you can use as keyword :
var formControl=form as Control;