Which control is suitable for my application? [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Now i am currently working on a c# based application.In that application now i am working on design part.i am using visual studio 2008,i want a control like below image
which control is available like above image in visual studio.
i tried treeview.but i can't get the link like above image(here link is blue line).
How to do this?

if you move to some new technologies, most of the new features will available to you.
if you use WPF, you can achieve it. there is much flexibility in UI Decoration in it.
your desired design with custom item icons and colour link
if you use red controls: link

Related

How to create something like menu from android? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to create something like menu in android in Windows Phone. I found that there is something what would be good but I can't even find anywhere how it's named. I marked it red on screenshoot.
The element you are referring to is the ApplicationBar or "AppBar".
You can read more about it in the official documentation at http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff431813(v=vs.105).aspx
For examples of how to program with it see http://www.jeffblankenburg.com/2010/10/06/31-days-of-windows-phone-day-6-application-bar/
Note that this is a native Windows Phone element and does not correspond directly to the Android menu and users of each platform would likely expect them to behave differently on each platform.

How can i design my own control in VS 2010 from scratch? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I wish to design my own control in C# for visual studio.I have followed the link Create Custom Control and would like to see some more which involves making control from scratch
A simple search on StackOverflow and Google are a great place to start.
If you are wanting to create a control that handles its own rendering, you may want to look into using the objects in the System.Drawing namespace (namely System.Drawing.Graphics).

shape of my visual components form go mixed up when I run my project on other device with different resolution's screen [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
When I run my application on another PC the positions of components on the form is incorrect, for example my labels go off the edge of the Panel and TextBoxes overlap buttons.
My application is a Windows Forms application.
What could be the cause of this?
Following could be the reasons for this
1. Screen Resolution
2. System Font Size

Need ribbon control common in all window/page in wpf project [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am goin to do a project in WPF c#. I am really new to this.
I would like to know whether it is possible to have common ribbon control for all window/pages(similar mdi parent window in win application).
Do wpf have parent mdi window to acheive this.
And really what is the difference between pages and windows. which should i use?
I think what you are looking for is WPF Ribbon Control Application.
For starting take a look at this project

C# Code Snipped [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Is there any control for auto complate my code in textbox at runtime?
There is a textbox in my form and when i want to write c# code at runtime.Can it be auto complete code in textbox?
You can check out Actipro SyntaxEditor and Quantum Whale Editor.NET. Both controls support C# editing with syntax highlighting and "intellisense" drop-downs.
In WinForms, the standard combo box control includes options for providing the auto-complete mechanism based on the items in the drop down list.
I am assuming, of course, that you are not trying to do something like Intellisense. Your question is not clear.

Categories