Sunday, 22 August 2010

how to bind with different controlls

// source code how to bind with different controlls
//go to properties and add to any event
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsProject
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
MessageBox.Show("Bound with multiple events of a control");
}
}
}