using System; using System.Collections.Generic; using System.Collections.Specialized; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using EnvDTE; using EnvDTE80; namespace SolutionOpen { public partial class ChooseFile : Form { public ChooseFile(ref DTE2 applicationObject, ref StringCollection pathNames) { this.applicationObject = applicationObject; this.pathNames = pathNames; InitializeComponent(); LoadSearchFromRegistry(); RebuildListViewItems(); } } }