show/hide this revision's text 2 improved answer

You could write an extension method that would allow you to return any controls on the form that implement an interface.

public static class FormExtensions
{
    public static IList<T> IDictionary<string, T> GetControlsOf<T>(this Form form) 
           where T: class
    {
        var result = new List<T>();
        Dictionary<string, T>();
        foreach (var control in form.Controls)
        {
            if ((control as T) != null)
                result.Add(control result.Add((control as T).Tag, control as T);
        }
        return result;
    }
}

Then in your form you could call it whereever you want by:

this.GetControlsOf<ICustomerName>();
<ICustomerName>()["NameOfControlHere"];

In the event that it returns more than one user control you would need to handle that some how, perhaps by adding Tag property to the interface to uniquely keep track of each user control or something, like so

public partial class UserControl1 : UserControl, ICustomerName
{
     public string SomeTag Tag { get ; set{ return this.Name; } }
}

You can then drag and drop the user controls onto your form from the designer. As a side benefit, SomeTag would show up as a property in Tag will always return the name of your Properties window under Misc groupcontrol, which will allow you to directly access the control through the IDictionary's interface. You're developers could put whatever unique identifier they want therein the name of the control, and it would carry through to the interface.

Also, it should be noted that this approach will ALSO allow you to use this on ALL forms in your solution.

The only other thing you would need to do is set your GenerateMember to false.

show/hide this revision's text 1

You could write an extension method that would allow you to return any controls on the form that implement an interface.

public static class FormExtensions
{
    public static IList<T> GetControlsOf<T>(this Form form) where T: class
    {
        var result = new List<T>();
        foreach (var control in form.Controls)
        {
            if ((control as T) != null)
                result.Add(control as T);
        }
        return result;
    }
}

Then in your form you could call it whereever you want by:

this.GetControlsOf<ICustomerName>();

In the event that it returns more than one user control you would need to handle that some how, perhaps by adding Tag property to the interface to uniquely keep track of each user control or something, like so

public partial class UserControl1 : UserControl, ICustomerName
{
     public string SomeTag { get; set; }
}

You can then drag and drop the user controls onto your form from the designer. As a side benefit, SomeTag would show up as a property in your Properties window under Misc group. You're developers could put whatever unique identifier they want there, and it would carry through to the interface.

Also, it should be noted that this approach will ALSO allow you to use this on ALL forms in your solution.

The only other thing you would need to do is set your GenerateMember to false.