I have a UserControl (Composite control) that can be shown as the following pseudo XAML code:
<UserControl>
<DockPanel>
<TextBox />
<Button />
</DockPanel>
</UserControl>
I use this custom control in a bunch of places and style some of them with a WPF Style. This style sets the Background property of the UserControl to a color. But this background color is drawn on UserControl's background surface, but I want it to be drawn only on TextBox control's background. This is what I get (Color=Red):

If I bind the Background property of the UserControl to my TextBox control's background property, I get the following one:

Now it also paints the background of the inner TextBox control but the Background color of the UserControl still exists. Are there any ways to remove that painting of UserControl's background?
