- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
switch (_viewerPanel.Modified)
{
case true:
_viewerPanel.FilenameLabel.Text = _listOfRecords[index].Name;
_filesPanel.listViewControl.Items[index].Text = _listOfRecords[index].Name;
_fileChangeDictionary[_listOfRecords[index].FullName] = true;
break;
case false:
_viewerPanel.FilenameLabel.Text = _listOfRecords[index].Name;
_filesPanel.listViewControl.Items[index].Text = _listOfRecords[index].Name;
_fileChangeDictionary[_listOfRecords[index].FullName] = false;
break;
}