You can't add a Text property because Text is inherited from the Control class, so your UserControl already has a Text property. Think of a different name.

Why have you created a UserControl anyway? If all you want is a TextBox then why not inherit the TextBox class? If you want more functionality then does the DateTimePicker control not already provide that?