Inheritance: System.Windows.Application
コード例 #1
0
ファイル: InheritTheApp.cs プロジェクト: stevexy/kasicass
        public static void Main()
        {
            InheritTheApp app = new InheritTheApp();

            app.Run();
        }
コード例 #2
0
ファイル: InheritTheApp.cs プロジェクト: daejinseok/Study_WPF
 public static void Main()
 {
     InheritTheApp app = new InheritTheApp();
     app.Run();
 }
コード例 #3
0
 public static void Main(string[] args)
 {
     InheritTheApp app = new InheritTheApp();
     app.Run();
 }