Curious about the name of a specific .NET control - c#

I'm curious if .NET and C# would allow me to include a control as such into my WinForms application?
This is a screenshot of how it looks like in Visual Studio 2010.
PS. Sorry for being too vague. I guess I'm looking for the name for this control.

It is called PropertyGrid control. See: PropertyGrid

Related

C#/.NET - How to transform a form into an object in Visual Toolbox?

I learned how to create custom controls and make a library with these. No problem.
On my software I've various PopUp windows like the exemple below:
It's possible to put this different forms on a library and use in other project with the Visual Toolbox ? Like a FontDialog for example:
I've found some solution on the web. But when I drop my form from the toolbox, there is display on the form. Not like a FontDialog who appear only on ShowDialog() request.
As a french guy, I think I don't have the good keywords for google the question.
Thanks !

How to add visual controls to a Console application?

I am looking for a way to add visual controls into a console application. Is this supported by Visual Studio? If yes how to do it? any samples or links?
By visual controls I mean text boxes, menus, etc... Something similar to the following picture:
Thank you!
You probably want something like NCurses or MonoCurses as there's nothing really built in to do this for you, interacting with the console is pretty basic.
See these links:
http://mono-project.com/MonoCurses
http://sourceforge.net/projects/curses-sharp/

TreeView-Grid control for c# WinForms

I'm developing a project in Visual webgui right now. Designing a window/page is very similar to WinForms. I need a control like this one: http://www.devexpress.com/Products/NET/Controls/WinForms/Tree_List/.
There is no control like this in Gizmox libraries so I have to create my own. I'm looking for source of such a control in WinForms, so I could implement my custom control based on ready example.
Or maybe You have such a control in webgui ?
Anyway, thanks for you help
You could try VisualJS.NET and translate any javascript control easily.. It supports custom javascript based controls etc.

How to create a stylish tab contol with items inside it like visual studio 2010

I want to develop an application. I want to create a stylish tab control and display pictures like Form1.cs looks like in visual studio tab control ,and i want to highlight it a yellow color when it is clicked.
you can understand by seeing this image,
There would be a great appreciation if someone could help me.
Thanks In Advance.
You need WPF.
AFAIK, AvalonDock is one good library made for very similar look. You need to check its forum for examples and latest discussions.
Have you looked at WPF (Windows Presentation Foundation)? The IDE Shell of Visual Studio 2010 (from the screenshot) has been written using WPF.

How to display a form inside another form like Visual Studio

How does Visual Studio and other similar programs display a form in their IDE?
Is it possible to achieve the same or a similar effect using C# or VB.NET?
Please see the picture below to get what I mean.
If you are talking about hosting a Winforms editor in your code, it is entirely possible and is actually built in to the .NET framework!
The Essence is the IDesignerHost interface. The whole system is complicated, but can be done (I have done it in production code for runtime layout configuration editing). There is a sample of code from Microsoft here.
I'm sure if you search fir 'IDesignerHost' you'll find enough reference material to figure it out.
Are you speaking about UI creating tools?
Refer to http://www.icsharpcode.net/opensource/sd/ - SharpDevelop for deep dive. It's open sourse, so you'll be able to find out more details.
I believe what you want is a multiple document interface (MDI) see http://msdn.microsoft.com/en-us/library/ms973874.aspx for more info.

Categories

Resources