Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Zooming in the visual studio form designer

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?

like image 959
dumbledad Avatar asked Oct 01 '13 15:10

dumbledad


People also ask

How do I zoom in Visual Studio designer?

You can already zoom in the XAML Designer by holding Control and using the mouse scroll wheel (or trackpad scrolling). Alternatively, there is a zoom combobox in the bottom left of the designer where you can adjust the zoom percentage.

How do I change the zoom level in Visual Studio 2019?

Use keyboard shortcuts Ctrl+Shift+period (zoom in) and Ctrl+Shift+comma (zoom out) Type a zoom level directly in the the zoom control in the bottom left corner of the editor. Select a common zoom level from the dropdown list in the zoom control.


1 Answers

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.

like image 128
Richard Banks Avatar answered Sep 28 '22 00:09

Richard Banks