I am creating a custom/user control on the lines of ItemsControl due to some inherent limitations on ItemsControl (for e.g. Parent should always be a Panel Control)
So whats the best way to go about it. The object model that i require is close to as follow
- ItemsSource - refers to a collection that the user can bound to. So the control should support databinding, so addition and removal to the collection should automatically add and remove items from the control ui.
- ItemsTemplate - refers to the Template that needs to be applied to the Collection.
Thanks.
UPDATE:Here is an example i am using Syncfusion Docking Control, this Docking Control has a DockingManager -> DockingPane -> List of Documents. I cannot use ItemsControl here because the DockingManager/DockingPane is not a Panel. So to solve this issue i need to create something which would act as a itemscontrol and support databinding and internally instantiate Syncfusion Docking Control, and also support templates to change the look and feel of the documentContents