I am working on a windows phone application and i need Menu like Ipad text selected (Cut,copy,paste) and also want some custom menus. When i Select text in windows phone only one option Copy text is visible.
Suggest me the Solution to my problem.
Thanx
EDIT
<Border BorderThickness="3" Padding="6">
<toolkit:GestureService.GestureListener>
<toolkit:GestureListener Tap="GestureListener_Tap" />
</toolkit:GestureService.GestureListener>
<toolkit:ContextMenuService.ContextMenu>
<toolkit:ContextMenu>
<toolkit:MenuItem Header="item1" Click="Item1_Click" />
<toolkit:MenuItem Header="item2" Click="Item2_Click" />
<toolkit:MenuItem Header="item3" Click="Item3_Click" />
</toolkit:ContextMenu>
</toolkit:ContextMenuService.ContextMenu>
<TextBlock Text="Tap" />
</Border>
private void GestureListener_Tap(object sender, GestureEventArgs e)
{
Border border = sender as Border;
ContextMenu contextMenu = ContextMenuService.GetContextMenu(border);
if (contextMenu.Parent == null)
{
contextMenu.IsOpen = true;
}
}
I have used This code but it Generates a context menu like list items which i Not required I requires a Round corner Image icons like Copy and paste Or it would like the ipad or iphone selection text menu.
I want menu like

See my Question and Answer Here
and then Add Gesture event listner like below code Also note that you have to include the Microsoft.Phone.Controls.Toolkit reference.