public TreeViewFiller(TreeView treeView, ConsumerComponent consumerComponent)
 {
     this.treeView           = treeView;
     this.consumerComponent  = consumerComponent;
     fsEntriesToTreeNodesMap = new Dictionary <FileSystemInfo, TreeNode>();
     addTreeNodeFunc         = AddNodeAsExpanded;
     treeView.Nodes.Clear();
 }
예제 #2
0
 public XmlWriter(string filePath, ConsumerComponent consumerComponent)
 {
     this.filePath           = filePath;
     this.consumerComponent  = consumerComponent;
     fsEntriesToXElementsMap = new Dictionary <FileSystemInfo, XElement>();
 }