1

Windows Phone 7 のコピー アンド ペースト アイコンを変更したいのですが、Windows Phone のコピー アンド ペーストなどのカスタム メニューを追加したいと考えています。

Q1: テキストが選択されたときにコントロールのようなコピーを生成できますか? Q2: テキストを選択したときに、円のアイコンを追加できますか?

List と Windows Phone 7 のツールバーのコンテキスト メニューを試しましたが、Windows Phone でも同じスキームを使用したいと考えています。

誰かが関連情報を持っている場合は、助けてください。

ありがとう

4

1 に答える 1

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;
            }
        }
于 2012-12-07T11:23:23.523 に答える