Zooming in the visual studio form designer

60,869

The Windows Forms designer doesn't zoom. The WPF one does because it's vector based, but WinForms is pixel based you don't get the zooming.

If you've got multiple monitors you can drag the designer to a second screen and work with it that way, or you can press Alt+Shift+Enter to toggle full screen and work with it that way.

Share:
60,869
dumbledad
Author by

dumbledad

I work for Microsoft as a programmer at our research lab in Cambridge. Dad. Opera lover. Keen but shite violinist. Too many hobbies and obsessions to list!

Updated on October 24, 2020

Comments

  • dumbledad
    dumbledad over 3 years

    I'm using the Visual Studio 2013 form designer to edit a form. The size of the form in the designer window is too big so I want to zoom out.

    Form in form designer occluded and in need of zooming out

    In applications like Photoshop or Blend I could (among other things) use the keyboard shortcut Ctrl-0 to fit the design to the screen.

    In Visual Studio how do I zoom out in the form design window?

  • dumbledad
    dumbledad over 10 years
    Thanks Richard. What do you mean by "pixel based"? Adobe Illustrator is for authoring vector based work while Photoshop is for authoring pixel based work. They both allow zooming.
  • Richard Banks
    Richard Banks over 10 years
    Pixel based meaning the controls and elements are defined with specific widths and heights measured in pixels, and are rendered accordingly. They won't scale as resolution scales and aren't easy to zoom since you can really only zoom in large steps if you want to retain fidelity. i.e. 100%, 200%, 400%, etc. The designer could implement a more graduated zooming feature, but the loss of precision and the antialiasing needed would make working with winforms and doing pixel perfect layouts impossibly annoying. It's not such a problem with graphics programs which is why they offer it.
  • MajesticRa
    MajesticRa over 6 years
    I want to see pixels
  • OneWorld
    OneWorld almost 5 years
    I decreased my screen resolution. That's my zoom feature ;)