예제 #1
0
 /// <summary>
 /// Create a new <see cref="AutoSheetWindow"/> Window
 /// </summary>
 private static void CreateWindow()
 {
     if (_autoSheetMainWindow == null)
     {
         _autoSheetMainWindow         = new AutoSheetWindow();
         _autoSheetMainWindow.Closed += AutoSheetMainWindowOnClosed;
     }
     else
     {
         ACadLogger.Log("Window Already Exists");
     }
 }
예제 #2
0
 public void AutoSheetCommand()
 {
     ACadLogger.Log("Starting AutoSheet Command");
     AutoSheet.StartApplication();
 }
예제 #3
0
 /// <summary>
 /// Initialization Function for the application
 /// </summary>
 public void Initialize()
 {
     ACadLogger.Log("Application Loaded");
 }
예제 #4
0
 /// <summary>
 /// Start the AutoSheet Application and Open a new
 /// <see cref="AutoSheetWindow"/>
 /// </summary>
 public static void StartApplication()
 {
     CreateWindow();
     ACadLogger.Log("AutoSheet Window Opened");
 }