vote up 1 vote down star
1

How does ListCollectionView.AddNew determine the type of object it creates, and how could one affect it?

I have a hierarchy of a few types (Base, DerivedA, and DerivedB), and currently my WPF Toolkit DataGrid creates DerivedA objects (why, I don't know -- probably because almost all the data in the grid is of that type), but I'd like it to create DerivedB objects instead.

Update: I've tried deriving a new class from ListCollectionView and implementing a new AddNew method for it, and now I'm almost there: the only remaining problem is that after adding a new item, a new new item placeholder isn't added, so I can only add one item. My current approach looks somewhat like this:

public class CustomView : ListCollectionView, IEditableCollectionView
{
    public CustomView(System.Collections.IList list)
        : base(list)
    {
    }

    object IEditableCollectionView.AddNew()
    {
        DerivedB obj = new DerivedB();
        InternalList.Add(obj);
        return obj;
    }
}
flag

1 Answer

vote up 1 vote down

TomiJ,

see if it helps, but isn't the answer ok?

http://www.cnblogs.com/winkingzhang/archive/2008/05/22/1204581.html

link|flag
1  
The article (the original one is at <blogs.msdn.com/vinsibal/archive/…;) was of some help, as it did set me off looking at ListCollectionView. – TomiJ May 10 at 13:25
I see, i you managed to get the right answer, don't forget to update here. It's a very interesting question :D – Kamia May 11 at 20:28
I'm not quite there yet, as I can only add one new item, but at least the correct AddNew method gets called. I'll have to figure out what else I need to implement to get proper functionality. – TomiJ May 11 at 21:25
why don't you implement a strategy pattern, are your familiar with the concept? – Kamia May 12 at 13:14
Where do you mean I should apply the strategy pattern at? Basically add a new Context class which would contain the Base/DerivedA/DerivedB instances and the collection would then contain these? This is a bit awkward. – TomiJ May 14 at 12:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.