what control should I use for this? [closed] - c#

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
In visual studio the toolbox design is like
when you click on,sub items are shown .
what is its name ,and how can I have one ?
I want to use this in windows form not wpf

It is commonly called a Tree View. In C#, there are two built in classes. Depending on which UI framework you are using, you would use either:
System.Windows.Controls.TreeView (WPF)
System.Windows.Forms.TreeView (WinForms)

Do a menuStrip. Drag a menuStrip on your form. Then add what you want. Click each item you add then code what the item does.

Related

C# Hyper-V Manager side menu-like? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I was wondering what type of side menu Microsoft used in their Hyper-V Manager (or mmc as well) and wanted to ask you If there is such control in C# (Winform / wpf) and what is the name of it?
I was trying to play with TreeView but it sucked in many ways, e.g. I was not able to "unfocus" selected node and so on.
Hope you are all doing well during this time.
Thank you!
hyper-v manager side menu screenshot
You can either use a 3rd party library having Accordion Control
Ex: https://docs.devexpress.com/WindowsForms/114553/controls-and-libraries/navigation-controls/accordion-control
Or make one for yourselves using WPF/WinForms Custom Control.

How to display Button on form [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
As in this picture, how I can create a list with users and display it on the listbox with two buttons delete and launch and when I can create there code what I must do help please !
I assume you want to write windows forms application with C#. I use DataGridView for this purpose, because in datagridview we can define columns. The wireframe has 3 columns one is the name and others are launch and delete. There is also listview component if you like. If it is a webpage there are similar components like asp.net GridView. These components also have databindings with SqlDataSource, so CRUD operations can be done without coding.
If you are a beginner to winforms, check this out.

Can you make a listview or similar of small functional forms or equivalent as shown in picture? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I need to make a list(view?) containing individual forms, or objects that can mimic my needs (buttons, labels, images) preferably resizeable if a button is pushed so I can expand downwards and show a textbox that can contain info and/or be edited)
Problem is olved using TaW suggestion in the comments above.
Many thanks

Changing the background color of C# wpf checkbox [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I have made a C# wpf application using Mahapps with Visual Studio 2012. I have added a check box into it. I want to change the inner background color of the checkbox. How can I achieve it ?
You can change the appearance of your control by using the ControlTemplate of that control. Just modify it as per your requirement.
See this MSDN link.

How to use Windows 7 Style Controls in .net [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I am trying to make my application use the new style controls but the controls that default into the VS2010 toolbox are not the same. Does anybody know where to get the controls? Are they available to developers or does the painting have to be done with a custom method to replicate the results.
Here are some examples,
This is an image of the tree view I currently have in my application with a solid blue selection style
This is the selection style I wish to replicate,
Thanks for your help.

Categories

Resources