I have following code:
<Popup AllowsTransparency="True"
PopupAnimation="Fade"
Placement="MousePoint" VerticalAlignment="Top" HorizontalAlignment="Center"
IsOpen="{Binding IsPopupOpen}"
StaysOpen="True" Margin="50">
<Label Style="{StaticResource PopupInformationLabelStyle}"
Content="{Binding EnumPopupText}" Margin="10,10,10,10" />
</Popup>
This popup displays exactly at the mouse position. Actually I display this popup on DataGridTextColumn editing. So it appears exactly on the textbox when I doubleclick it. So the question is:
Is it possible to add few more pixels to MousePosition? Roughly speaking I need Placement="MousePosition" + 50.
Thanks in advance