Welcome to the WPF feedback portal. We’re happy you’re here! If you have feedback on how to improve the WPF, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Provide the support to get the selected value in the MultiColumnDropDown control when binding the base class objects as collection and pass the derived class objects as the data.
Example code
public class BaseClass
{
public int A{get;set}
}
public class DerivedClass : BaseClass
{
public int B {get;set;}
}
ObservableCollection<BaseClass> data = new