Extension Provider for WPF
Is there a WPF equivalent to System.ComponentModel.IExtenderProvider ?
Do I have to go to the dependency properties and attached properties to create the equivalent, or is there already something baked in the oven waiting for me?
Thank,
Patrick
+2
source to share
1 answer
The attached property is the path http://msdn.microsoft.com/en-us/library/ms749011.aspx
You can also use AttachedPropertyBrowsableForChildrenAttribute to tell the control to extend the newly created property to all of its children (Grid row property).
+5
source to share