For example, if I have a Name object
public class Name
{
public string First { get; set; }
public string Middle { get; set; }
public string Last { get; set; }
}
and I have a form with 3 text fields, called txtFirstName, txtMiddleName,txtLastName
I want to somehow automatically bind a domain object to these text fields.
I am very used to working with asp.net-mvc, but I'm trying to pass this knowledge to winforms 0_0
source
share