Click here to Skip to main content
15,896,269 members
Articles / Web Development / HTML

Leveraging .NET Components and IDE Integration: UI AOP in an MVC use case

Rate me:
Please Sign up or sign in to vote.
4.99/5 (125 votes)
28 Jun 200598 min read 354.5K   835   384  
An in-depth exploration of the features and the power of .NET Component Model architecture, its integration with the IDE at design-time and the possiblities it opens through extensions at run-time.
using System;
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Windows.Forms.Design;

namespace Mvc.Components.Design
{
	/// <summary>
	/// This root designer controls which toolbox items are available as well as filtering properties.
	/// </summary>
	[ToolboxItemFilter("Mvc.Components.Controller", ToolboxItemFilterType.Require)]
	public class ControllerRootDesigner : ComponentDocumentDesigner
	{
		/// <summary>
		/// Removes the <see cref="BaseController.ConfiguredViews"/> property when the controller is
		/// the root component, because in that case it's not applicable.
		/// </summary>
		protected override void PreFilterProperties(IDictionary properties)
		{
			base.PreFilterProperties(properties);
			//DONE: Only show ConfiguredViews if the component is not the root component.
			IDesignerHost host = (IDesignerHost) GetService(typeof(IDesignerHost));
			if (host.RootComponent == this.Component)
				properties.Remove("ConfiguredViews");
		}

	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
Argentina Argentina

Comments and Discussions