Is there a component for .NET WinForms or WPF to create a ControlPanel-style layout with icons?
I want to have a window which looks like a Control Panel and have a variable number of icons in it.
Is there a component for .NET WinForms or WPF to create a ControlPanel-style layout
Share
For example:
You can add as many as you want they will be layed out for you. (A wrappanel might be better depending on what you really want).
You could then bind the “Command” property of each link to a command on your ViewModel
if you are using MVVM.
If you want the items to come from a Collection, you can use an ItemsContainer or ListBox
and change the ItemsPanel template
Of course there are many more ways of doing it, this is just a small example.