Start off by renaming Form1.cs to eBookManager.cs. This is the start-up form for the application and it will list all the existing storage spaces previously saved:
Design your eBookManager form as follows:
- ListView control for existing storage spaces
- ListView for eBooks contained in selected storage space
- Button that opens the file location of the eBook
- A menu control to navigate to the ImportBooks.cs form
- Various read-only fields to display the selected eBook information
When you have added the controls, your eBook Manager form will look as follows:
Looking at the code we used earlier, you need to ensure that the ...