C# Hyper-V Manager side menu-like? [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 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.

Related

how to develop UI for desktop application using TELERIK [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 want my interface to look more elegant though professional and i want to make it good as web/android UI's. But how do i do it? I have heard about TELERIK UI. but i have no idea about how to use it. I have downloaded it and initialised it but do not know what and how to do next. any help would be really appreciated.Thanks.
You can start here
http://www.telerik.com/winforms/winforms-guide
http://www.telerik.com/videos/wpf
If you are not super attached to Telerik you can also look at Electron for native desktop apps (as it should have slightly easier learning curve):
http://electron.atom.io/

Draw graphs in WPF application [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 am new to C# and WPF, this is my first application.
I managed to display the content of a csv file in a window and I wish to draw charts of this data (column based on the other ...). My problem is that I can not install the Xceed Wpf Toolkit on my PC (for security reasons). I added the two dlls Xceed.Wpf.DataGrid and Xceed.Wpf.Toolkit as reference in my project and I don't know what to do to draw charts in my WPF application - as I mentioned I'm new to this technology.
Do you have please some explanations to guide me!
Use the Windows.Forms chart control. I've found this very straightforward in the past. Take a look at http://www.codeproject.com/Tips/1006180/Using-Microsoft-Chart-in-WPF.

How to shows grouped header list in windows phone 8.1? [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 8 years ago.
Improve this question
i need this type of page in my application is this possible to make this kind of selection list in windows phone. please help me and provide me the right direction to achieve this.
If you're using Silverlight, you need to use a LongListSelector, which already has support for sections (A-Z, or whatever you want).
You can follow Microsoft's tutorial here:
https://msdn.microsoft.com/en-us/library/windows/apps/jj244365(v=vs.105).aspx
However, for the newer Windows Runtime, the class is now ListView. You can see how to use it here: http://www.visuallylocated.com/post/2014/04/28/Migrating-from-the-LongListSelector-to-the-ListView-in-Windows-Phone-XAML-Apps.aspx
Please note that it will be visually different than iOS.

Can you add a Console program to a WindowsFormApplication program? [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 8 years ago.
Improve this question
I want to make a C# WindowsFormApplication project to collect and store answers.
I then want to use these answers to generate input for selenium web driver which is a console application.
Is it possible to join the two projects together so I first collect my answers on the form, and when I click run on the windows application form, for the console application to start running? If so, how would this be done?
In case you don't want to use database as suggested by kat0r you can use sockets to make them communicate together.
The obvious answer would be to store the questions in a file/database, and simply access it from both applications. You can start other programs with something like Process

How to create designer/editor as a web application to design pages? [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 8 years ago.
Improve this question
I've a project where i need to allow users to design their own pages for their application. So i want to create a designer/editor using ASP.NET/C# or silverlight or using anyother MS technologies. The designer should have the following features
Drag and drop controls
Move the controls in the designer to
position it
Preview mode/Source Mode
Property Window for Controls with specific properties
I've not any designer as a hosted application. I basically want to create something similar to visual studio designer as a web app. Any insights on how to approach this?
Silverlight fits perfectly for that.
Drag and Drop is possible too.
So if your user is fine with installing Silverlight it's the best way, in my opinion.
Let me know if you have any questions

Categories

Resources