Custom toolbar in C# windows forms [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 5 years ago.
Improve this question
I'm trying to create a toolbar/menu as in the image below.
I've added a toolstrip control. It has some buttons with images and text below. But I don't know how to reproduce the "grouped" look in the image above.
Does someone have an idea how to do that?

The control in your image is a ribbon (not a toolbar, toolstrip or tooltip).
WinForms doesn't support ribbons out of the box. But it looks like there are ribbon controls available, such as RibbonWinForms on GitHub.

Related

How To create dynamic vertical progress bar in WPF with radio button [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 yesterday.
Improve this question
I need to create a summary with progress steps that can indicate how many steps are completed and how many step's are pending and completed step's should be highlighted but the rest of the not highlighted look like the image below.
so if anyone can suggest which control I should use for this I am new in WPF.
any sample link to get better idea on this.

How to change a window layout on a button press? [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
what I am asking is when writing WPF applications in C# how can I get it so on a press of the menu bar the window changes to a different layout with different feature.
I think you should use a TabControl, see https://msdn.microsoft.com/en-us/library/system.windows.controls.tabcontrol(v=vs.110).aspx

Windows form, C#, background image [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'm developing a project using Windows Forms. Here I have created a form in which I used TableLayout tool and a label. I have set a background image for form. I want the same background to be set to table and label without setting background for each of them again.
Is this possible?
All you need to do is go to your table layout properties and set the Background color to Transparent

How can I do input tags in C# with DevExpress WinForms? [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 7 years ago.
Improve this question
I'm using Devexpress win-ui forms for desktop and I want to implement search bar like this:
Is there any way to do like this plugin in DevExpress WinForms?
In WinForms platform there is TokenEdit control.
More info you can find in DevExpress Documentation topic «Token Edit Control».

Indenting listview item with icon in c# [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 9 years ago.
Improve this question
I want to create list view with indented icon and I came across that:
There is a solution, but it's non-dotnet and I was wondering how I could achieve this with C#?
Thanks!
See this MSDN page. Use the IndentCount property of the ListViewItems.
However see the remark there:
The IndentCount property can be used only when the View property of
the containing ListView is set to Details, and the SmallImageList
property of the ListView is set.
The example there works easily.

Categories