Make user control display property values at design time?
Changing the Text property of a text box in the VS IDE makes the text appear in the test box control in the IDE at design time. So, I have created a user control containing a text box, adding a Prompt property to the control's codebehind to set the Text property of the text box. As expected, the text box displays the value entered in the Prompt property at run time .
But, changing the Prompt property in the VS IDE on the page where the control has been consumed does not change the text box's text at design time. What do I need to do to get the value entered in the Prompt property in the VS IDE to appear in the user control (not the property pane!) at design time? Is this simply not possible?
|