On the forum there was a suggestion that a person should use a container control that had a few controls embedded in it at design time. And then when using that container control that they should skip providing an API that the container presented and just reach inside the container and manipulate the controls it contain directly.… Read the rest
More projects on Github
My CSV Parser is now on github
If there are others you’d like to see on github send me an email, or comment and I’ll get them posted.
Bevelbutton redux
At the end of June I posted about a replacement for the bevel button that I’d created.
Since then I’ve had some feedback and some updates & fixes submitted for it and a newer versions has been posted.
If you’ve used it in your projects you might want to grab the latest version.
Keep your code off of my controls
Suppose you are creating a new container control to encapsulate some functionality onto this new control. You’re already thinking about “encapsulation” which is a good thing.
Why, when you create this new container, would you then make all the controls on it public so code outside the container can change it ? That seems like it would be a good way to ruin the encapsulation you’re trying to achieve.… Read the rest