2

私は TextBlock(s) の ListBox を持っており、エンド ユーザーがディスプレイからテキストをコピーして、好きな場所に貼り付けることができるようにしたいと考えています。右クリック->コピー、およびユーザーのctrl + cキーを押すと、1行のコピーを取得できます。ユーザーが ctrl+c キーを押すと、複数行のコピーを取得することもできます。メニューのドロップダウン呼び出しだけでなく、右クリック->コピー機能を使用して複数行のコピーを実行できるようにしたいと考えています。

私のリストボックス:

    <!--Progress Window-->
    <ListBox x:Name="Progress_Window" ItemsSource="{Binding _displayString}" ScrollViewer.ScrollChanged="Progress_Window_ScrollChanged" KeyDown="Progress_Window_KeyDown" SelectionMode="Extended">
        <ListBox.ItemTemplate>
            <DataTemplate>
                <TextBlock Text="{Binding _string}" Foreground="{Binding _color}" FontSize="{Binding _fontSize}">

                    <TextBlock.ContextMenu>
                        <ContextMenu>
                            <MenuItem Command="Copy">
                                <MenuItem.CommandBindings>
                                    <CommandBinding Command="ApplicationCommands.Copy" CanExecute="RightClickCopyCmdCanExecute" Executed="RightClickCopyCmdExecuted" />
                                </MenuItem.CommandBindings>
                            </MenuItem>
                        </ContextMenu>
                    </TextBlock.ContextMenu>

                </TextBlock>
            </DataTemplate>
        </ListBox.ItemTemplate>
    </ListBox>

背後にあるコード:

    [DllImport("user32.dll", SetLastError = true)]
    static extern void keybd_event(byte bVk, byte bScan, int dwFlags, int dwExtraInfo);


    [DllImport("kernel32.dll")]
    static extern bool GenerateConsoleCtrlEvent(uint dwCtrlEvent, uint dwProcessGroupId);


    public const int KEYEVENTF_EXTENDEDKEY = 0x0001; //Key down flag
    public const int KEYEVENTF_KEYUP = 0x0002; //Key up flag
    public const int VK_LCONTROL = 0xA3;   //0xA2; //Left Control key code
    public const int C = 0x43; //A Control key code


    private void Progress_Window_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.Key == Key.C && (Keyboard.Modifiers & ModifierKeys.Control) == ModifierKeys.Control)
        {
            try
            {
                ListBox lb = (ListBox)(sender);

                string collectedText = "";

                foreach (DisplayData dd in lb.SelectedItems)
                {
                    collectedText += dd._string + "\r\n";
                }

                if (lb.SelectedItems != null)
                {
                    Clipboard.SetText(collectedText);
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
    }


    private void RightClickCopyCmdExecuted(object sender, ExecutedRoutedEventArgs e)
    {
        MenuItem mi = (MenuItem)sender;
        DisplayData selected = (DisplayData)mi.DataContext;

        if (selected != null)
        {
            Clipboard.SetText(selected._string);
        }
    }


    private void RightClickCopyCmdCanExecute(object sender, CanExecuteRoutedEventArgs e)
    {
        e.CanExecute = true;
    }


    public void CallKeyDown()
    {
        //Progress_Window.Focus();

        //// Hold Control down and press C
        //keybd_event(VK_LCONTROL, 0, 0, 0);
        //keybd_event(C, 0, 0, 0);
        //keybd_event(C, 0, KEYEVENTF_KEYUP, 0);
        //keybd_event(VK_LCONTROL, 0, KEYEVENTF_KEYUP, 0);

        System.Windows.Forms.SendKeys.SendWait("^{c}");

        var key = Key.C;             // Key to send            
        var target = Progress_Window;               // Target element
        var routedEvent = Keyboard.KeyDownEvent;    // Event to send

        target.RaiseEvent(new KeyEventArgs(Keyboard.PrimaryDevice, PresentationSource.FromVisual(target), 0, key) { RoutedEvent = routedEvent });
    }
}

メニューのドロップダウンから:

<Grid>
    <Menu>
        <!--File-->
        <MenuItem Header="_File">
            <MenuItem Header="_Close" Command="{Binding Close}" />
        </MenuItem>

        <!--Edit-->
        <MenuItem Header="_Edit">
            <MenuItem Header="_Copy     Ctrl+C" Command="{Binding CtrlC}" />
        </MenuItem>

CtrlC コマンドは、CallKeyDown() をトリガーするアクションを呼び出します。

ContextMenu を TextBlock から ListBox に移動しようとしましたが、_displayString データではなく、ViewModel の DataContext が返されました。

CallKeyDown() でわかるように、コード ビハインドから ctrl+c キーの押下をシミュレートしようとしていますが、成功していません。それがこの問題に対する最善のアプローチであるかどうかはわかりません。SendKeys.Send("^{c}") も使用しようとしましたが、それはウィンドウ フォームでのみ機能します。

4

1 に答える 1