This question is locked. New answers and comments are not allowed.
The following xaml reproduces the bug. Click the HyperlinkButton once
makes the menu appear in the top left corner of the page. When clicked a
2nd time, the menu appears in the correct position. Can this be fixed in the next internal build? If so, when is it coming out?
<UserControl x:Class="RadWindowAndRadMenuBugs.MainPage" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="400"> <Grid x:Name="LayoutRoot" Background="White"> <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center"> <HyperlinkButton Margin="15" FontSize="16" Content="Context Menu (opens on click)" HorizontalAlignment="Center" VerticalAlignment="Center"> <telerik:RadContextMenu.ContextMenu> <telerik:RadContextMenu EventName="Click"> <telerik:RadMenuItem Header="Item 1"></telerik:RadMenuItem> <telerik:RadMenuItem Header="Item 2"></telerik:RadMenuItem> </telerik:RadContextMenu> </telerik:RadContextMenu.ContextMenu> </HyperlinkButton> </StackPanel> </Grid></UserControl>