Hi guys,
For my final internship (before I graduate in software development) I have to develop an application where the client has a maximum of 24 camera feeds on the same form, with controls.
What is the best practice for making multiple imageViewerControls? When I make an instance of multiple imageViewerControls I get the error that it’s not possible because of the abstract class. Therefore I declared at the top of the code “private ImageViewerControl imgViewer1”, “private ImageViewerControl imgViewer2”, and so on until 24… but this doesn’t look nice because the application has to be dynamical.
If possible, each connected camera must load automatically in the available panel - but this is something for after my internship ends. I currently want to load the cameras manually. That’s why I need the multiple imageViewerControls on 1 form, and only 1 method to generate the camera stream to the selected panel (which I have from a sample of Milestone).