Can anyone please tell how to combine two controls, not necessary charting controls, at one? What I need to do? Maybe there is a book or example?
I’m using System.DataVisualization.Charting controls. Thanks.
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.
The concept of combining controls is really about aggregating functionality.
The functionality which may span multiple controls can be aggregated in two ways; either via a
UserControlwhich simply encapsulates the controls as they exist in their original form or creating a custom control which will provide the functionality from the varying controls which you are after.The differences between a
UserControland custom control are subtle on the surface but significant underneath the covers. Depending on your technology; WinForms, WPF, etc… there are samples online on for creating aUserControl.