c# - Dashboard controls in Winforms -
i working on winform based applications(yes don't know wpf) , want's dashboard panels in it. picture given below
each panel have title , records database , action controls. how achieved? don't want use gridcontrol don't want show excel spreadsheet here. how achieved?
it sounds want make usercontrol
, possibly coupled automatic layout panel flowlayoutpanel
.
simply speaking, create usercontrol
whatever properties , events require (i.e. in example might have title
property , data
property), , events need respond (e.g. might have button provide wrapper event for). can add control existing form other standard control.
as far displaying data in list form goes, 1 suggestion use panel
, dynamically add label
s it. idea simple label
line breaks in text
.
Comments
Post a Comment