コード例 #1
0
ファイル: O2Gui.cs プロジェクト: MattFellows/FluentSharp
 public static T showAsForm <T>(string title) where T : Control
 {
     return((T)WinForms_Show.showAscxInForm(typeof(T), title));
 }
コード例 #2
0
ファイル: O2Gui.cs プロジェクト: MattFellows/FluentSharp
 public static T showAsForm <T>(string title, int width, int height) where T : Control
 {
     return((T)WinForms_Show.showAscxInForm(typeof(T), title, width, height));
 }
コード例 #3
0
ファイル: O2Gui.cs プロジェクト: dhcgn/FluentSharp
 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));
 }