I\'m trying to make a TextBox with a button on the right side. My code:
public partial class TextBoxButton : TextBox
{
[Category(\"Button\")]
[Descri
At first a Question: Do you need one or more Button at the side of your TextBox? So you need a Property Button or Buttons for one Button or a Collection
If the Button is not so complex that you have to make a lot of specific functions, you use the UserControl. It is the right way. Otherwise you have to take a CustomControl, more work.
Logical Steps: