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.
Related
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
C#, .NET Framework 4.8, WinForms:
I want to create a vertical icon bar with the same look & feel as in Microsoft Teams (see picture).
So also hovering, highlighting, short cuts, etc. should be the same.
Which of the standard controls is the best for this? Would you take a TreeView? Or do I need to make a custom control? How is it solved in MS Teams?
I have no Idea how this is made in MS Teams, but what I should do I create a custom view with the selector on the left with a visibility state, so when you select one of the items, you change the background color and make the selector visible at the selected item. This will result in a similar design as in MS Teams!
I hope you can start working on it, just ask if you can't figure something out!
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
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.
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.
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.