Hi.
Ques : What are Extender provider components? Explain how to use an extender provider in the project.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Feb 15, 2012, 11:11 AM
An extender provider is a component that provides properties to other components.
Implementing an extender provider:
Use the ProvidePropertyAttribute, which specifies the name of the property that an implementer of IExtenderProvider provides to other components, attribute to specify the property provided by your extender provider.
Implement the provided property.
Track which controls receive your provided property.
Implement the IExtenderProvider, which defines the interface for extending properties to other components in a contain, interface.
Thanks