Пример #1
0
 public static void Main() {
     UI.App app = new UI.App();
     app.InitializeComponent();
     app.Run();
 }
Пример #2
0
 public static void Main()
 {
     UI.App app = new UI.App();
     app.InitializeComponent();
     app.Run();
 }
Пример #3
0
 /// <summary>
 /// Initializes the UI manager
 /// </summary>
 /// <param name="projectManager">Project manager</param>
 /// <param name="documentManager">Document manager</param>
 public UIManager(ProjectManager projectManager, DocumentManager documentManager)
 {
     App             = new UI.App();
     ProjectManager  = projectManager;
     DocumentManager = documentManager;
 }