I need to display one progress bar for each person in a dictionary of person-time pairs. The TableLayoutPanel seems a good bet for a container for my list of progress bars. Is it suitable, or what should I rather look at?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Depends on how many ‘person-time’ pairs you have. Full
ProgressBarsI imaging will be fairly expensive if you have hundreds or thousands. You could overide theDataGridViewCell/Columnand create aDataGridViewProgressCell/Column, this would be a lightweight solution, that also looks good…If this is what you after I will post you some code. Otherwise, I would do as you have suggested, use a
TableLayoutPanelseems a good-a-choice as any.I hope this helps.