Click here to Skip to main content
15,886,873 members
Articles / Programming Languages / C#

Introduction to the TypeConverter

Rate me:
Please Sign up or sign in to vote.
3.66/5 (20 votes)
9 Mar 20042 min read 113.7K   849   31  
Illustrates simple PropertyGrid editing of class properties using TypeConverter
using System;
using System.ComponentModel;
namespace NameSpace
{
	#region Test 1:  Basic class to illustrate design time functionality
		public class ParentClass
		{
			private ChildClass _Child;
			public ChildClass Child
			{
				get
				{
					return _Child;
				}
				set
				{
					_Child=value;
				}
			}
		}
		public class ChildClass
		{
			public string PrimaryIdentity;
		}
	#endregion Test 1


	#region Test 2:  Basic class enhanced for propertygrid viewing
//	public class ParentClass
//	{
//		private ChildClass _Child;
//		public ChildClass Child
//		{
//			get
//			{
//				return _Child;
//			}
//			set
//			{
//				_Child=value;
//			}
//		}
//	}
//	[TypeConverter(typeof(ChildClassTypeConverter))]
//	public class ChildClass
//	{
//		public string PrimaryIdentity;
//	}
//	public class ChildClassTypeConverter:TypeConverter
//	{
//		public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destinationType)
//		{
//			ChildClass childClass=(ChildClass)value;
//			return childClass.PrimaryIdentity;
//		}		
//	}
	#endregion Test 2
}

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
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions