Esempio n. 1
0
        /// <summary>
        /// Initialization method called by the package base class when this package is loaded.
        /// </summary>
        protected override void Initialize()
        {
            base.Initialize();

            // Register the editor factory used to create the DSL editor.
            this.RegisterEditorFactory(new nHydrateEditorFactory(this));

            // Initialize the toolbox helper
            toolboxHelper = new global::nHydrate.Dsl.nHydrateToolboxHelper(this);

            // Create the command set that handles menu commands provided by this package.
            nHydrateCommandSet commandSet = new nHydrateCommandSet(this);

            commandSet.Initialize();

            // Create the command set that handles cut/copy/paste commands provided by this package.
            nHydrateClipboardCommandSet clipboardCommandSet = new nHydrateClipboardCommandSet(this);

            clipboardCommandSet.Initialize();

            // Register the model explorer tool window for this DSL.
            this.AddToolWindow(typeof(nHydrateExplorerToolWindow));

            // Initialize Extension Registars
            // this is a partial method call
            this.InitializeExtensions();

            // Add dynamic toolbox items
            this.SetupDynamicToolbox();
        }
Esempio n. 2
0
		/// <summary>
		/// Initialization method called by the package base class when this package is loaded.
		/// </summary>
		protected override void Initialize()
		{
			base.Initialize();

			// Register the editor factory used to create the DSL editor.
			this.RegisterEditorFactory(new nHydrateEditorFactory(this));
			
			// Initialize the toolbox helper
			toolboxHelper = new global::nHydrate.Dsl.nHydrateToolboxHelper(this);

			// Create the command set that handles menu commands provided by this package.
			nHydrateCommandSet commandSet = new nHydrateCommandSet(this);
			commandSet.Initialize();
			
			// Create the command set that handles cut/copy/paste commands provided by this package.
			nHydrateClipboardCommandSet clipboardCommandSet = new nHydrateClipboardCommandSet(this);
			clipboardCommandSet.Initialize();
			
			// Register the model explorer tool window for this DSL.
			this.AddToolWindow(typeof(nHydrateExplorerToolWindow));

			// Initialize Extension Registars
			// this is a partial method call
			this.InitializeExtensions();

			// Add dynamic toolbox items
			this.SetupDynamicToolbox();
		}