As title says, is there equivalent to AbstractTableModel in c#, or is there another, better, solution for creating table model in c#?
As title says, is there equivalent to AbstractTableModel in c#, or is there another,
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
After working with Java Swing and C# WPF and SilverLight, IMHO there is no equivalent of
AbstractTableModelin .Net. You simply set theItemsSourceproperty and use binding to map columms to properties. You can usePagedCollectionViewto have some features like sorting and grouping, but the model still is a list of objects, so you have flexibility to pass any kind of collection of objects to the table.Why do you want to use
AbstractTableModelin C#, wich feature do you want to use or implement?