Click here to Skip to main content
15,889,834 members
Articles / Programming Languages / C#

Property Grid - Dynamic List ComboBox, Validation, and More

Rate me:
Please Sign up or sign in to vote.
4.57/5 (20 votes)
25 Sep 2009CPOL17 min read 167.5K   11.2K   90  
A PropertyGrid implementation showing how-to use, best practices, validation, and more.
using System;

namespace Webbert.Utilites
{
	public static class ClassType
	{
		/// <summary>
		/// Get the class type object
		/// </summary>
		/// <param name="assemblyQualifiedName">Assembly-qualified name of the Type containing DLL, class name, version, culture, public key</param>
		/// <returns>The type object of the class</returns>
		public static Type GetType( string assemblyQualifiedName )
		{
			return ( Type.GetType( assemblyQualifiedName ) );
		}


		/// <summary>
		/// Get the class type object
		/// </summary>
		/// <param name="dllName">DLL where the class is defined</param>
		/// <param name="className">Fully qualified name of the class</param>
		/// <returns>The type object of the class</returns>
		public static Type GetType( string dllName, string className )
		{
			string format = string.Format( "{0}, {1}", className, dllName);
			return ( GetType( format ) );
		}

		/// <summary>
		/// Get the class type object
		/// </summary>
		/// <param name="dllName">DLL where the class is defined</param>
		/// <param name="className">Fully qualified name of the class</param>
		/// <param name="version">The specific version to create</param>
		/// <param name="culture">The culture information</param>
		/// <param name="publicKeyToken">Public Key Token</param>
		/// <returns>The type object of the class</returns>
		public static Type GetType( string dllName, string className, Version version, string culture, string publicKeyToken )
		{
			string format = string.Format( "{0}, {1}, Version={2}, Culture={3}, PublicKeyToken={4}",
				className, dllName, version, culture, publicKeyToken );

			return ( GetType( format ) );
		}
	}
}

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Webbert Solutions
United States United States
Dave is an independent consultant working in a variety of industries utilizing Microsoft .NET technologies.

Comments and Discussions