I would like to make the controls inside my user control private, so that only the methods/properties I choose to expose are accessible.
I found this similar question: How do I make my controls inside a UserControl private?
However, I would like to know how/if this can be done in windows forms (not wpf.)
It seems like something that should be really simple... what am I missing?
Thanks.
EDIT: In response to some of the comments/answers, I just want to make it clear that I am using VB.net for which the default modifier for a control is "friend", not "Private".