Beispiel #1
0
 public static T showAsForm <T>(string title) where T : Control
 {
     return((T)WinForms_Show.showAscxInForm(typeof(T), title));
 }
Beispiel #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));
 }
Beispiel #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));
 }