Esempio n. 1
0
 public static T showAsForm <T>(string title) where T : Control
 {
     return((T)WinForms_Show.showAscxInForm(typeof(T), title));
 }
Esempio n. 2
0
 public static T showAsForm <T>(string title, int width, int height) where T : Control
 {
     return((T)WinForms_Show.showAscxInForm(typeof(T), title, width, height));
 }
Esempio n. 3
0
 public static T load <T>(string title, int width, int height, bool startHidden) where T : Control
 {
     return((T)WinForms_Show.showAscxInForm(typeof(T), title, width, height, startHidden));
 }