Click here to Skip to main content
15,881,204 members
Articles / Programming Languages / C#

Declarative Programming Of The MVC Pattern Within The Context Of DataBinding

Rate me:
Please Sign up or sign in to vote.
4.88/5 (14 votes)
31 May 200410 min read 87.8K   311   90  
Exploring the MVC pattern.
/*
 * Copyright (c) 2004 Marc Clifton
 * All Rights Reserved
 * 
 * License: GNU General Public License, see doc\license.txt
 * http://www.gnu.org/licenses/licenses.html#GPL
 * Owner: Marc Clifton email: webmaster@knowledgeautomation.com
 * First release published:
 * http://www.codeproject.com/cs/miscctrl/xmlGuiGenerator.asp
 * 2/25/04
*/

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Reflection;
using System.Windows.Forms;
using System.Xml;

namespace MyXaml.Extensions
{
	[TypeConverter(typeof(DataSourceTypeConverter))]
	public class DataSource
	{
		protected DataTable source;
		protected string field;
		protected string name;
		
		public DataTable Source
		{
			get {return source;}
			set {source=value;}
		}

		public string Field
		{
			get {return field;}
			set {field=value;}
		}

		public string Name
		{
			get {return name;}
			set {name=value;}
		}

		public DataSource()
		{
		}

		public override string ToString()
		{
			if ( (source != null) && (field != null) )
			{
				return (string)source.Rows[0][field];
			}
			return "";
		}
	}

	public class DataSourceTypeConverter : TypeConverter
	{
		public override bool CanConvertTo(ITypeDescriptorContext context, Type t)
		{
			if (t.FullName=="System.Object") return true;
			if (t.FullName=="System.Data.DataTable") return true;
			return false;
		}

		public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destinationType)
		{
			object ret=null;
			DataSource ds=(DataSource)value;
			if (destinationType.FullName=="System.Object")
			{
				// return the DataTable when being assigned the a DataSource property.
				ret=ds.Source;
			}
			else
			if (destinationType.FullName=="System.Data.DataTable")
			{
				ret=ds.Source;
			}
			return ret;
		}
	}
}

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
Architect Interacx
United States United States
Blog: https://marcclifton.wordpress.com/
Home Page: http://www.marcclifton.com
Research: http://www.higherorderprogramming.com/
GitHub: https://github.com/cliftonm

All my life I have been passionate about architecture / software design, as this is the cornerstone to a maintainable and extensible application. As such, I have enjoyed exploring some crazy ideas and discovering that they are not so crazy after all. I also love writing about my ideas and seeing the community response. As a consultant, I've enjoyed working in a wide range of industries such as aerospace, boatyard management, remote sensing, emergency services / data management, and casino operations. I've done a variety of pro-bono work non-profit organizations related to nature conservancy, drug recovery and women's health.

Comments and Discussions