Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Keyboard shortcuts

Keyboard shortcuts

Scheduled Pinned Locked Moved C#
question
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Offline
    N Offline
    nlowdon
    wrote on last edited by
    #1

    Afternoon Folks ! I'm looking for some advice on keyboard shortcuts please. I have my system set up so that some of the main windows are minimized at the side of the screen (toolbox, solution explorer etc). I have found the keyboard shortcuts for making these visible/hiding and was wondering if there was another key tap for pinning it in place (turning off the auto hide) ? You know - say i wanted it open t drag a a few components and didn't want it to keep auto-hiding. I know i can 'pin' it with the mouse but would rather use the keyboard. A bit hard to explain i know but hopefully you've understood me. Neil

    P K 2 Replies Last reply
    0
    • N nlowdon

      Afternoon Folks ! I'm looking for some advice on keyboard shortcuts please. I have my system set up so that some of the main windows are minimized at the side of the screen (toolbox, solution explorer etc). I have found the keyboard shortcuts for making these visible/hiding and was wondering if there was another key tap for pinning it in place (turning off the auto hide) ? You know - say i wanted it open t drag a a few components and didn't want it to keep auto-hiding. I know i can 'pin' it with the mouse but would rather use the keyboard. A bit hard to explain i know but hopefully you've understood me. Neil

      P Offline
      P Offline
      Pedram Behroozi
      wrote on last edited by
      #2

      Hi, I think you're in wrong forum. Here's C# forum, try Visual Studio forum[^].

      I died as a mineral and became a plant, I died as plant and rose to animal, I died as animal and I was Man. Why should I fear? When was I less by dying? -- Rumi[^] My blog

      1 Reply Last reply
      0
      • N nlowdon

        Afternoon Folks ! I'm looking for some advice on keyboard shortcuts please. I have my system set up so that some of the main windows are minimized at the side of the screen (toolbox, solution explorer etc). I have found the keyboard shortcuts for making these visible/hiding and was wondering if there was another key tap for pinning it in place (turning off the auto hide) ? You know - say i wanted it open t drag a a few components and didn't want it to keep auto-hiding. I know i can 'pin' it with the mouse but would rather use the keyboard. A bit hard to explain i know but hopefully you've understood me. Neil

        K Offline
        K Offline
        Kevin McFarlane
        wrote on last edited by
        #3

        I set up macros to do this, e.g.,

        Sub ToggleToolbox()

        Dim w As Window = DTE.Windows.Item(Constants.vsWindowKindToolbox)
        
        If w.Visible Then
            w.Visible = False
        Else
            w.Visible = True
        End If
        

        End Sub

        Sub ToggleSolutionExplorer()

        Dim w As Window = DTE.Windows.Item(Constants.vsWindowKindSolutionExplorer)
        
        If w.Visible Then
            w.Visible = False
        Else
            w.Visible = True
        End If
        

        End Sub

        Then assign them to keyboard shortcuts.

        Kevin

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups