Is there some special XML tag or property I can add to my XAML to make certain child elements on a UserControl
only appear in Design Mode? Something like this?
<UserControl ...>
<Grid>
<IfDesignMode>
<Show-This-Element-Only-In-Design-Mode />
</IfDesignMode>
</Grid>
</UserControl>