gpt4 book ai didi

wpf - 将 'Select All' 上下文菜单项添加到默认 TextBox 菜单项

转载 作者:行者123 更新时间:2023-12-04 10:49:50 25 4
gpt4 key购买 nike

我在我的 DataGrid 中的 DataGridTemplateColumn 的 CellEdititngTemplate 中有一个 TextBox,当我的 DatagridCell 处于编辑模式并且用户右键单击它时,我想显示 4 个上下文菜单项(剪切、复制、粘贴、全选)。

我看到 TextBox 控件的默认右键单击上下文菜单仅包含 3 个菜单项:剪切 (Ctrl+X)、复制 (Ctrl+C)、粘贴 (Ctrl+V)。

尽管 Ctrl+A 适用于 TextBox,但没有“全选”上下文菜单项。所以问题是 - 如何在不丢失剪切、复制、粘贴菜单项及其功能的情况下将新的上下文菜单项“全选”添加到 TextBox 上下文菜单中?

最佳答案

我认为您不能更改现有的上下文菜单,但您可以创建自己的上下文菜单并重复其他命令

<ContextMenu>
<MenuItem Command="ApplicationCommands.Cut" />
<MenuItem Command="ApplicationCommands.Copy" />
<MenuItem Command="ApplicationCommands.Paste" />
<MenuItem Command="ApplicationCommands.SelectAll" />
</ContextMenu>

关于wpf - 将 'Select All' 上下文菜单项添加到默认 TextBox 菜单项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29694307/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com