
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
What are extender provider components in C#?
To provide properties to other components, the extender provider is used. Let’s consider an example of a TooTtip component.
You add the component to a form. This sets a ToolTip property to every control. The same property is not under the attacked PropertyGrid control.
myTooltip1.SetToolTip(btn1, "This is ToolTip!");
Let us see how to implement extender provider component −
Firstly, define a component −
public class MyExtender : IExtenderProvider {...}
IExtenderProvider definition −
public interface IExtenderProvider { bool newExtend(object extendeNew); }
Now you need to implement the newExtend method. This is done to return true for every related component or control.
- Related Articles
- What are the differences between WiFi Repeater and WiFi Extender?
- What are the differences between WiFi Extender and WiFi Booster?
- What are biotic components ?
- What are Architecture Flux Components in JavaScript?
- What are the components of DBMS?
- What are the components of food?
- What are the main file components in Cucumber?
- What are the important components of ODBC?
- What are the important components of JDBC?
- What are the components of the CPU?
- What are the various Components of Selenium?
- What are the components of Portal Server?
- What are the components of data mining?
- What are the components of trusted Network?
- What are the Components of Performance Management?

Advertisements