|
Creating inherited .NET components in C# • Home
In this series of articles, we'll discover, how to create component, that is inherited from on of the standard .NET components in C#, how to implement our own functionality of modified compomnent and how to completely develop our component. Although this problem is trivial, there are some pitfalls, that we'll try to avoid. We'll need only three simple steps
Component skeleton creation
Create a solution in Visual Studio .NET, create basic component code and an application for its testing. Now everything is over to make our component do that we want.
Component functionality implementation
Modifying existing, adding new, hiding needless. After all, everything looks quite good and even works exactly the way we need, but some minor and decorative things are still missing.
Documenting and cosmetics
Most sweet part of any work - giving a polish. Document our new functionality, entering information about the creator, and painting an icon for component.
|