WinForms and BindingSource control binding issues
Posted by: Rick Strahls WebLog,
on 28 Nov 2005 |
View original | NEW Bookmarked: 0 time(s)
Hmm... I must be dense or something when it comes to understanding the databinding in WinForms. I think I’m misunderstanding the concept…
Here’s what I want to do:
I have a created a very simple form and a very simple POCO object class called address like this:
public partial class Form1 : Form
{
protected Address MyAddress = null;
public...