Suppose you need to add some additional functionality to your windows control in your application and you have requirement to use this control with same additional functionality many times in the application. This is same as when we use the textbox or label control classes in the Windows form. Continue reading “How to create your first custom control in C# – Numeric Textbox”
Tag: Custom and User Controls
How to add misc propety in Button custom control in vb.net
you can use custom control to add additional property in the button through making custom control.
in this article i will add some misc properties in the button custom control and also will show how to use this control in your project. Continue reading “How to add misc propety in Button custom control in vb.net”
What is the difference between User Control and Custom Control?
Custom controls are compiled code (DLL) easier to use, difficult to create and can be place in toolbox. You can drag and drop controls, Attributes of this control are visually set at design time. Continue reading “What is the difference between User Control and Custom Control?”