Design of a suer interface similar to visual studio

M

m.a

Hello,

I want to design a user interface similar to visual studio in win form. I
am very interested in the property window. Is there any tool that can help
me in designing such user interface?



Any help is much appreciated.



Regards
 
N

Nicholas Paldino [.NET/C# MVP]

Well, you are going to need some controls for docking and multiple
document interface tabs. Most likely, you are going to be using commercial
controls (there are some that offer a VS feel).

The property grid is a standard .NET control though. You can use the
System.Windows.Forms.PropertyGrid class. You can right click on your
toolbox and then add it through the "Add Item" (I believe that is what it is
called) feature there.
 
I

Ignacio Machin ( .NET/ C# MVP )

Hello,

   I want to design a user interface similar to visual studio in win form. I
am very interested in the property window. Is there any tool that can help
me in designing such user interface?

Any help is much appreciated.

Regards

The tool of choice is VS :)

Besides that, you need a good third party control toolkit, take a look
at Infragistics for example.
Beware though. creating an interface as complex as VS is not an easy
task at all.

Property window is not too complex to implement I think, from the
outside it looks like a GridView with two columns, one is a Label and
the other change depending of the type of the property DropDown,
textbox, numeric textbox, etc)
 
T

Tom Shelton

Hello,

I want to design a user interface similar to visual studio in win form. I
am very interested in the property window. Is there any tool that can help
me in designing such user interface?



Any help is much appreciated.



Regards

I've actually had decent results with this:

http://sourceforge.net/projects/dockpanelsuite/

Documentation isn't really great, but you can pretty much figure it out from
the example applciation code that comes with the project.
 
C

Chris Dunaway

Hello,

I want to design a user interface similar to visual studio in win form. I
am very interested in the property window. Is there any tool that can help
me in designing such user interface?

Any help is much appreciated.

Regards

Depending of the type of app you're developing, you might be able to
use the VS 2008 shell! Check this link:

http://msdn.microsoft.com/en-us/vsx/bb933751.aspx

Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top