Ctrl+X does not work in Project Properties UI text boxes (1)
See original GitHub issue(Moved from #6627)
Repro steps:
- Open the Project Properties UI
- Select text in a text box (e.g. Assembly name)
- Press <kbd>Ctrl</kbd>+<kbd>X</kbd>
- Expect text to be cut to the clipboard. Actually, nothing happens.
Unclear why. Probably the VS command bound to this keystroke is hijacking it. This works in the legacy pages though. The code in PropertyPageElementHost
might be relevant.
Issue Analytics
- State:
- Created 3 years ago
- Comments:12 (12 by maintainers)
Top Results From Across the Web
Ctrl+A not working in file textbox dialog
I just started having an issue while trying to make comments in Pull Request in AzDo. After typing in a comment inside a...
Read more >Exception when trying to open project properties
When using Visual Studio 2022 17.1 Preview 1, trying to open project properties for a Blazor projet. Here's the trace in the log...
Read more >ctrlX CORE Runtime
Working with configurations using the control interface. . . . . . . . . . . 72 ... Rexroth As the manufacturer...
Read more >ctrlX CORE Runtime
Working with configurations using the control interface. . . . . . . . . . . 48 ... Rexroth As the manufacturer...
Read more >Object 'Property'
For this purpose, a property provides the accessor methods Get and Set which allows for read and write access to the data of...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@tmeschter uncovered this code in the legacy pages:
https://github.com/dotnet/project-system/blob/0476235d70d1b65b8062492075db6fd86995612a/src/Microsoft.VisualStudio.AppDesigner/PropPageDesigner/PropPageDesignerView.vb#L422-L426
The changes to resolve the issue have been merged into CPS via: https://devdiv.visualstudio.com/DevDiv/_git/CPS/pullrequest/349555