private void AnalyseDuplicates() { DuplicateParser.ParseDup(txtDuplicatesFile.Text, vfl); listDuplicates.Items.Clear(); listDuplicates.Items.Add(String.Format("Total Frames : {0}", vfl.Count)); refreshMap(true); }
/// <summary> /// Load duplicates from a duplicate file /// If a frame list exists, it updates the fields accordingly /// otherwise it creates a new one /// </summary> /// <param name="dpFile">the filename of the duplicates</param> public void LoadDuplicates(String dpFile) { DuplicateParser.ParseDup(dpFile, this); _HasDuplicates = true; }