31

如何限制 WPF 文本框的剪切、复制和粘贴?

4

2 回答 2

50

剪切、复制和粘贴是任何应用程序使用的常用命令,

<TextBox CommandManager.PreviewExecuted="textBox_PreviewExecuted"
         ContextMenu="{x:Null}" />

在上面的文本框代码中,我们可以在 CommandManager 类的 PrviewExecuted 事件中限制这些命​​令

并在后面的代码中添加下面的代码,你的工作就完成了

private void textBox_PreviewExecuted(object sender, ExecutedRoutedEventArgs e)
{
     if (e.Command == ApplicationCommands.Copy ||
         e.Command == ApplicationCommands.Cut  || 
         e.Command == ApplicationCommands.Paste)
     {
          e.Handled = true;
     }
}
于 2009-06-02T06:47:29.140 回答
17

commandName 方法不适用于具有日语操作系统的系统,因为 commandName=="Paste" 比较将失败。我尝试了以下方法,它对我有用。我也不需要手动禁用上下文菜单。

在 XaML 文件中:

<PasswordBox.CommandBindings>
    <CommandBinding Command="ApplicationCommands.Paste"
    CanExecute="CommandBinding_CanExecutePaste"></CommandBinding>
</PasswordBox.CommandBindings>

在后面的代码中:

private void CommandBinding_CanExecutePaste(object sender, CanExecuteRoutedEventArgs e)
{
    e.CanExecute = false;
    e.Handled = true;
}
于 2010-06-22T16:43:21.167 回答