Допустим, у меня есть простой UserControl без кода:
<UserControl
xmlns= ....
x:Class="TrafficLight.LightControl">
<Grid x:Name="LayoutRoot">
<Grid x:Name="Light" >
<Ellipse x:Name="MyColor" Fill="{**I need bind this field to UserControl.Foreground**}" Stroke="#FF000000" />
<Ellipse x:Name="Shade" Fill="#E4555555" />
</Grid>
</Grid>
И используйте этот UserControl на странице:
<TrafficLight:LightControl x:Name="red" Foreground="#FFFEF100" **<= I need to bind MyColor.Fill with this property**/>
Как я могу реализовать этот сценарий?