1

I'm newbie. I'm creating a windows application and I want to create a control similar to Visual Studios Property Panel or Solution Explorer Panel. That i can pin and unpin. How can I create that control? Do I have to add any DLL for that or I have to make my own control?

Also what is name of the control?

Jeff
  • 29
  • 4

2 Answers2

0

It's the System.Windows.Forms.PropertyGrid control that you are after : PropertyGrid Class (System.Windows.Forms)

Jens Meinecke
  • 2,904
  • 17
  • 20
0

The control is called Dockable Panel. A similar question already exists, click here to view that question.

You can use some third party controls.

Video Tutorial

DevExpress

Telerik

Avalon Dock

Community
  • 1
  • 1
Salman
  • 1,380
  • 7
  • 25
  • 41
  • The question doesn't mention anything about a Docking interface. So your answer doesn't seem to answer the - to be fair, very vague - question. – Jens Jan 24 '16 at 09:25
  • He clearly mentioned in the question that he want a control similar to `property control` of `visual studios`. – Salman Jan 24 '16 at 09:40
  • Sorry my bad, i'm a newbie, so don't know much about the terms, this answer is correct – Jeff Jan 24 '16 at 09:45
  • This is exactly what i was looking for. Thanks :) – Salman Jan 24 '16 at 09:47