Given the following little snippet:
<Grid>
<Frame Width="300" Height="300" Background="Blue"></Frame>
<Frame Width="350" Height="350" Background="Red"></Frame>
</Grid>
as expected you don't get to see the blue frame (it being behind the red one).
However, if you include the source attribute to the blue frame:
<Grid>
<Frame Width="300" Height="300" Background="Blue" Source="c:\test.htm"></Frame>
<Frame Width="350" Height="350" Background="Red"></Frame>
</Grid>
it pops itself to the front.
Any idea why and can I prevent it?
thanks