public static class UIExtensions
{
public static Control GetAssociatedControlByType(this Control sender, Type TypeOfDesiredControl)
{
// designed for dtCards
// Imagine this, you have two controls side by side on a form. When you do something in the left, you'd like to manipulate the right control...
::Events, (Delegates) And User Controls.txt::
Do you know why delegates are so necessary? Well, they're practical for when you need to hard code a function to be called, but don't know which function will be called exactly...
If you answered my first question no, then you're probably wondering, "Well, when the hell do you need...