Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A control that is equivalent to the "Properties Window" of Visual Studio?

I say, as in the picture:

enter image description here

if not exists, how to create it dynamically?

like image 423
Jack Avatar asked Jan 13 '12 01:01

Jack


People also ask

What is Properties window in Visual Studio?

The Properties window is used to display properties for objects selected in the two main types of windows available in the Visual Studio integrated development environment (IDE). These two types of windows are: Tool windows such as Solution Explorer, Class View, and Object browser.

How do I get the Properties window in Visual Studio?

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.

Where is Properties in Visual Studio code?

You access project properties by right-clicking the project node in Solution Explorer and choosing Properties, or by typing properties into the search box on the menu bar and choosing Properties Window from the results. .

Which one is used to display the Properties window in VB?

Press <F4>. The Properties window displays the properties for the current object. When you select different objects in your VBA project, the Properties window changes to show just the properties of the object you selected.


1 Answers

This is called the PropertyGrid control in WinForms.

There are also various WPF implementations:

  • WPF Property Grid

  • WPF PropertyGrid Control

  • Native WPF 4 PropertyGrid

And at least one Silverlight implementation:

  • PropertyGrid - Silverlight 3.0

And finally, at least one for ASP.Net:

  • ASP.Net PropertyGrid
like image 193
competent_tech Avatar answered Sep 26 '22 23:09

competent_tech