I have an extension to the ICollectionView interface that allows me to handle multi-selection (IMultiSelectCollectionView). I want to provide an implementation that is compatible with BindingListCollectionView but that class is sealed. Does anyone know why this design decision was made?
| |||
|
feedback
|
closed as not constructive by Kent Boogaart, shf301, Andrew Barber, Bo Persson, Graviton Jul 14 '11 at 2:01
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
Sealing a class usually denotes a safeguard to a derived class that might dramatically change the basic behavior of the original one. Anyway, I don't know what's the real meaning for sealing that class. | |||
|
feedback
|
ImageListclass in .NET, which is a wrapper around the native ImageList control. You cannot give aListViewany other kind of ImageList other than the one that wraps the native ImageList, because the ListView requires that Imagelist wrap the native control. Even if you wanted to create a descendant ImageList that supports alpha blended PNG images, you can't use it. So BindingListCollectionView is sealed because someone depends violating its encapsulation. – Ian Boyd Jul 12 '11 at 14:13