I've seen this link to solve my problem, but it wasn't work for me, because, I have two grids in my Layout and I need tha one of them get the mouse event and the other no. The first grid is like a title bar with buttons and where I can move my window. Does anyone have any solutions or suggestions?
My Xaml
<UserControl ...>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid Grid.Row="0">
....
</Grid>
<Grid Grid.Row="1"
behaviors:PopupBehavior.IsPopupEventTransparent="True">
.....
</Grid>
</Grid></UserControl>