Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Building a great dashboard app in WPF -- what are the controls available out there? [closed]

My application collects business data from various sources, aggregates it, groups and filters, and needs to display it. Pretty uncommon, right? =)

The point is that I already have a "drill-down" UI, so the Services and Operations people can find their data in the tree view and do their job. But now I also need a shiny high-level dashboard view for the Big Bosses to oversee their whole Kingdom. I guess that should be exactly where the WPF's strength is...

I'm looking at the Dynamic Dashboards website for example and I'd like to know, if there are similar controls available for WPF? Or any other dashboard controls you can recommend?

like image 730
Max Galkin Avatar asked Jan 18 '10 18:01

Max Galkin


People also ask

What are WPF controls?

WPF SDK continues to use the term "control" to loosely mean any class that represents a visible object in an application, it is important to note that a class does not need to inherit from the Control class to have a visible presence.


3 Answers

Check out the WPF Dashboard demo. It comes with source code. Also the WPF Dashboard project on codeplex. The Infragistics Dashboard demo is nice as well.

like image 51
gyurisc Avatar answered Sep 21 '22 00:09

gyurisc


My decision was to take the DragDockPanel from the Blacklight project. It's both WPF and Silverlight-enabled.

like image 43
Max Galkin Avatar answered Sep 22 '22 00:09

Max Galkin


I know this is a very old question.. I wanted to put an answer out there for anyone else who is in search of a dashboard like control that isn't Blacklight. I thought I'd share the Wpf Dashboard Control I created. I couldn't find anything out there that handled dynamic widgets with varying sizes so I created my own.

You can check it out here: https://github.com/DustinBryant/WpfDashboardControl

like image 26
Dustin Avatar answered Sep 22 '22 00:09

Dustin