I have a converter, and class.
How can i display this in xamdatagrid?
private ContactType contactType = ContactType.Contact; public Person(ContactType c) {MyContactType = c;} public ContactType MyContactType { get { return contactType; } set { contactType = value; OnPropertyChanged("MyContactType"); } }
{
Person.ContactType contactType = (Person.ContactType)value;
}