What are Extender provider components?

What are Extender provider components? Explain how to use an extender provider in the project.

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 container.
Configuration files in .Net. Different types of configuration files
Describe the configuration files in .Net. Different types of configuration files. - The Machine.Config file, which specifies the settings that are global to a particular machine...
Accessibility modifier "protected internal" - C#.NET
C#.Net - Describe the accessibility modifier protected internal. - Its access is limited to the types derived from the defining class in the current assembly or the assembly itself...
Difference between Debug.Write and Trace.Write - C#.Net
C#.Net - Difference between Debug.Write and Trace.Write - Debug.Write: Debug Mode, Release Mode (used while debuging a project)....
Post your comment
Discussion Board
what are extender provider components ?
An extender provider is a component that provides properties to other components. For example, when a ToolTip component is added to a form, it provides a property called ToolTip to each control on that form.
Pankaj 11-7-2012