我想在Windows Phone 7中更改复制和粘贴图标,并且还希望在Windows手机中添加自定义菜单,例如复制和粘贴,例如在Webbrowser控件中突出显示和书签等。
Q1:我可以在选择文本时生成类似控件的副本。 Q2:我可以在选择文字时添加圆圈图标。
我已经尝试了List和windows phone 7工具栏的contextmenu,但我想对windows phone使用相同的方案。
如果有人有相关信息,请帮助。
感谢名单
答案 0 :(得分:0)
添加带有列表框的弹出窗口
<Popup Name="textSelectionMenuPopup">
<ListBox Name="textSelectionMenu" Margin="0,0,0,100" ItemContainerStyle="{StaticResource myLBStyle}" SelectionChanged="OnTextSelectionMenuSelectionChanged">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<toolkit:WrapPanel/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBoxItem Content="Copy">
<ListBoxItem.Background>
<ImageBrush ImageSource="/Images/Copy.png"/>
</ListBoxItem.Background>
</ListBoxItem>
<ListBoxItem Content="Highlights">
<ListBoxItem.Background>
<ImageBrush ImageSource="/Images/Highlights.png"/>
</ListBoxItem.Background>
</ListBoxItem>
<ListBoxItem Content="Tag">
<ListBoxItem.Background>
<ImageBrush ImageSource="/Images/Tag.png"/>
</ListBoxItem.Background>
</ListBoxItem>
<ListBoxItem Content="Note">
<ListBoxItem.Background>
<ImageBrush ImageSource="/Images/Note.png"/>
</ListBoxItem.Background>
</ListBoxItem>
</ListBox>
</Popup>
并处理OnTextSelectionMenuSelectionChanged
void OnTextSelectionMenuSelectionChanged(object sender, SelectionChangedEventArgs args)
{
ListBox lstbox = sender as ListBox;
if (lstbox.SelectedItem != null)
{
textSelectionMenuPopup.IsOpen = false;
string command = (lstbox.SelectedItem as ListBoxItem).Content as string;
switch (command)
{
case "Copy":
break;
case "Highlights":
break;
case "Tag":
break;
case "Note":
break;
case "cancel":
break;
}
}