Click here to Skip to main content
15,894,896 members
Articles / Programming Languages / C#

Implementing complex data binding in custom controls

Rate me:
Please Sign up or sign in to vote.
4.83/5 (49 votes)
29 Aug 2006CPOL9 min read 209.3K   5.1K   164  
An article on implementing complex data binding (DataSource and DataMember) on a custom control.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace ComplexDataBindingSample
{
	public partial class Form1 : Form
	{
		public Form1()
		{
			InitializeComponent();
		}

		private void customersBindingNavigatorSaveItem_Click(object sender, EventArgs e)
		{
			this.Validate();
			this.customersBindingSource.EndEdit();
			//this.customersTableAdapter.Update(this.nwindDataSet.Customers);
			this.nwindDataSet.Customers.WriteXml("northwindCustomers.xml");

		}

		private void Form1_Load(object sender, EventArgs e)
		{
			// TODO: Diese Codezeile l�dt Daten in die Tabelle "nwindDataSet.Customers". Sie k�nnen sie bei Bedarf verschieben oder entfernen.
			//this.customersTableAdapter.Fill(this.nwindDataSet.Customers);
			this.nwindDataSet.Customers.ReadXml("northwindCustomers.xml");

		}
	}
}

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

Comments and Discussions