I made a shadow window with this code
<Grid Background="Red" Margin="0">
<Grid.Effect>
<DropShadowEffect BlurRadius="10" ShadowDepth="1" Direction="270" Color="Red"/>
</Grid.Effect>
<Grid Margin="1" Background="White">
</Grid>
</Grid>
Result is successful, but when i try to capture windows screenshot with alt+print scr there was a blank margin like this.
first http://puu.sh/9rK9b/4dbd9a3b46.png
I want to capture screen only inside grid area except shadow area like this.