xaml container overflow hidden analog

windows-phone-7, xaml

Solution

Use something like:

<Grid Width="200" Height="100">       
  <Grid.Clip>
    <RectangleGeometry Rect="0, 0, 200, 100"/>
  </Grid.Clip>
</Grid>

Problem

Is there analogy for overlfow:hidden of html in xaml? I just tryed different types of containers(grid, canvas, etc..) and still can't simulate that behaviour.

Original source