Reputation: 844
I want to make a custom dashboard that will take the data I have in SQL Server and display it. Below is a general example of what I'd like to make. It's not going look exactly like this.
This project is being built in Visual Studio in a Window Forms Application and is being written in C#.
What I need to know is:
Any help you can give would be useful. Thank you in advance.
Upvotes: 0
Views: 9123
Reputation: 122
The term "widget" isn't natural lingo for Windows Forms as it was for X11. What you are looking for are called Controls in the WinForms world, and there are lots of places to get them for free or paid.
The Control library I am looking into right now is from SyncFusion. It looks expensive, but if you are a 5-person (or smaller) development shop, they give you their entire product line for free. If you are a larger group than that, there are free sources for Controls that I can help you find. Many of them are here in StackOverflow. Try searching for "control" or "control library".
Upvotes: 1