Пример #1
0
 private void MainFormLoad(object sender, EventArgs e)
 {
     mViewHandler.LoadTheme();
     mViewHandler.LoadGenresToCombobox(currentSection);
     PrepareSection(currentSection);
     SaveLoadController.LoadList(currentSection, settingsForm, currentListView);
 }
Пример #2
0
 private void PrepareSection(Sections section)
 {
     input_fields_panel.VerticalScroll.Value = 0;
     currentSection = section;
     SetCurrentListView();
     SetFilePath();
     SaveLoadController.LoadList(currentSection, settingsForm, currentListView);
     mViewHandler.SectionTransition(section);
 }
Пример #3
0
 private void LoadPreviousFileVersion()
 {
     currentListView.Items.Clear();
     SaveLoadController.LoadList(currentSection, settingsForm, currentListView);
 }