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!
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 5 years ago.
Improve this question
Been searching for hours and I can't seem to find a solution on this. I'd like to set my button to fixed even when the form is on scroll. Can anyone help?
Are you using a FlowLayoutPanel in your form for scrolling? More information would help us help you. So would adding some code snippets.
For the time being, have you considered putting the button above (or below, or to the side, or wherever you want it to be fixed) the scrollable component in your app? That way, it remains in the spot you want it while scrolling occurs in the scrollable area?
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.
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 9 years ago.
Improve this question
I want to make an applications that works like Word, Excel, Power Point etc... I mean if you maximize or change the window size to something different the program will always adjust the inside elements in a very nice way.
I'm creating a new "WindowsFormsApplication" in Visual Studio 2012 with C#
Thanx !!
Check out http://avalondock.codeplex.com/, it provides a Visual Studio style interface out of the box, and is very extensible.
Last time I checked it didn't support MVVM so well, but that might not be such a problem.
Dynamic resizing in WinForms is very easy, and most (if not all) of the behavior you want can likely be achieved simply by choosing the right controls and property settings.
To get started in the right direction, read up on the following topics:
Control.Anchor Property
Control.Dock Property
TableLayoutPanel Class
FlowLayoutPanel Class
It is easy enough to create a quick test app and drop some controls on it to see how they behave. No coding required.
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.