Saving Controls in C# Windows Application
问题 I am creating an application that creates a list of buttons from video files. Each button is generated to open the file on click, and then I use an open api (omdb.com) to get the movie posters for each one. However, not only is doing this process each time you launch the application slow, but it is also an unnecessary load on the website. What is the most efficient way to save a control after it is dynamically generated in the backend. So far I have tried using Properties.Settings , but