This question is locked. New answers and comments are not allowed.
Hi, I'm fairly new at using telerik controls and was looking to try the RadContextMenu. Basically I'm making an IM client and wanted the ability to right click on any conversation item and get a context menu where other options for the conversation could be selected. To be able to right click on the individual conversation items I used a ListBox. However the context menu control is viewed as a ListBoxItem and is always displayed. Below is the XAML snippet of my code. I am almost exclusivly using Blend 4 for all of my UI design and have found other anomilies doing this. Please let me know what I can do to perform the interaction that I want, thanks!
<ListBox Margin="8,116,0,0" Height="180" VerticalAlignment="Top" x:Name="Message_List_Box" HorizontalAlignment="Left" Width="205" BorderBrush="Black" FontFamily="Arial" FontWeight="Bold" FontSize="13.333">
<telerik:RadContextMenu FontFamily="Arial" FontWeight="Bold" FontSize="8" EventName="MouseRightButtonUp">
<telerik:RadMenuItem Header="NEW CONVERSATION">
</telerik:RadMenuItem>
<telerik:RadMenuItem Header="GET HISTORY">
</telerik:RadMenuItem>
<telerik:RadMenuItem IsSeparator="True">
</telerik:RadMenuItem>
<telerik:RadMenuItem Header="GOTO UNIT ON MAP">
</telerik:RadMenuItem>
<telerik:RadMenuItem Header="CALL UNIT">
</telerik:RadMenuItem>
</telerik:RadContextMenu>
</ListBox>
<ListBox Margin="8,116,0,0" Height="180" VerticalAlignment="Top" x:Name="Message_List_Box" HorizontalAlignment="Left" Width="205" BorderBrush="Black" FontFamily="Arial" FontWeight="Bold" FontSize="13.333">
<telerik:RadContextMenu FontFamily="Arial" FontWeight="Bold" FontSize="8" EventName="MouseRightButtonUp">
<telerik:RadMenuItem Header="NEW CONVERSATION">
</telerik:RadMenuItem>
<telerik:RadMenuItem Header="GET HISTORY">
</telerik:RadMenuItem>
<telerik:RadMenuItem IsSeparator="True">
</telerik:RadMenuItem>
<telerik:RadMenuItem Header="GOTO UNIT ON MAP">
</telerik:RadMenuItem>
<telerik:RadMenuItem Header="CALL UNIT">
</telerik:RadMenuItem>
</telerik:RadContextMenu>
</ListBox>