Example #1
0
 private void clear()
 {
     bibRecordsCurrent = new BibTeXRecordsCollection();
     bibRecordsReference = new BibTeXRecordsCollection();
     bibEntryContent = new BibTeXEntryContent();
     styleCollection = new StyleCollection();
     listViewEntires.Items.Clear();
 }
Example #2
0
 public GUI()
 {
     InitializeComponent();
     texFile = new FileManager();
     bibFile = new FileManager();
     bibRecordsCurrent = new BibTeXRecordsCollection();
     bibRecordsReference = new BibTeXRecordsCollection();
     isFilesOpened = false;
     gridViewEntryDetail.EditMode = DataGridViewEditMode.EditOnEnter;
     bibEntryContent = new BibTeXEntryContent();
     styleCollection = new StyleCollection();
     styleInterpreter = new StyleInterpreter(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location) + @"\Style.xml");
 }