Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 846323
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T06:35:43+00:00 2026-05-15T06:35:43+00:00

I want to suppress Cut, Copy and Paste operations in Text Box. I don’t

  • 0

I want to suppress Cut, Copy and Paste operations in Text Box.

I don’t want user to do any of these operations through keyboard or from default context menu in the text box .

Please let me know how can I restrict these operations?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T06:35:44+00:00Added an answer on May 15, 2026 at 6:35 am

    You can do this pretty easily using the CommandManager.PreviewCanExecute routed event. In your XAML, you would put the following on your TextBox element. This will apply to CTL+V, etc as well as the context menu or any buttons that you may have mapped to those commands so it’s very effective.

    <TextBox CommandManager.PreviewCanExecute="HandleCanExecute" />
    

    Then in your code-behind, add a HandleCanExecute method that disables the commands.

    private void HandleCanExecute(object sender, CanExecuteRoutedEventArgs e) {
    
        if ( e.Command == ApplicationCommands.Cut ||
             e.Command == ApplicationCommands.Copy ||
             e.Command == ApplicationCommands.Paste ) {
    
            e.CanExecute = false;
            e.Handled = true;
    
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When a user tries to launch an application I want to suppress that application
I want to suppress the web browser's default tooltip display when a user hovers
I understand exactly why unused variable warnings occur. I don't want to suppress them
I want to suppress the The resource name 'X.Y' is not a valid identifier
I want to suppress page number in a page where a figure covers the
I have several Code Analysis CA1704:IdentifiersShouldBeSpelledCorrectly warnings that I want to suppress. Basically, they
I have a DLL that is written in C++ and I want to suppress
want to open pdf file when a user clicks on hyperlink shown in gridview
I want to suppress the timeout error in a script that is running automatically.
I have a Slider whose value can be changed either by user, or through

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.