Click here to Skip to main content
15,886,518 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.4K   11.2K   90  
A PropertyGrid implementation showing how-to use, best practices, validation, and more.
namespace DataModel.PersonModel
{
	public class Person
	{
		#region Data Members

		private string _name;
		private string _street;
		private string _city;
		private string _state;
		private string _zip;
		private string _phone;

		#endregion

		#region Constructor

		public Person()
		{
			this.Name = string.Empty;
		}

		#endregion

		#region Properties

		/// <summary>
		/// Get/Set for Name
		/// </summary>
		public string Name
		{
			get { return ( _name ); }
			set { _name = value; }
		}

		/// <summary>
		/// Get/Set for Street
		/// </summary>
		public string Street
		{
			get { return ( _street ); }
			set { _street = value; }
		}

		/// <summary>
		/// Get/Set for City
		/// </summary>
		public string City
		{
			get { return ( _city ); }
			set { _city = value; }
		}

		/// <summary>
		/// Get/Set for State
		/// </summary>
		public string State
		{
			get { return ( _state ); }
			set { _state = value; }
		}

		/// <summary>
		/// Get/Set for Zip
		/// </summary>
		public string Zip
		{
			get { return ( _zip ); }
			set { _zip = value; }
		}

		/// <summary>
		/// Get/Set for Phone
		/// </summary>
		public string Phone
		{
			get { return ( _phone ); }
			set { _phone = value; }
		}

		#endregion
	}
}

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