Home > Back-end >  Properties window in design view VSTO
Properties window in design view VSTO

Time:02-15

I'm new to VSTO and I can't find a way to open property panel for design view. I'm building a VSTO application for the first time

CodePudding user response:

It's pretty straightforward -

  1. Right click on any component in the design view.
  2. Click on Properties

As default properties view will open on your right side in your visual studio.

CodePudding user response:

You can find Properties Window on the View menu. You can also open it by pressing F4 or by typing Properties in the search box. See Properties window for more information.

  • Related