public FolderTreeViewItem(ILibraryAdapter adapter, string path)
     : base(adapter)
 {
     _path = path;
 }
Exemple #2
0
 public NewLibrary(ILibraryAdapter adapterLibrary)
 {
     AdapterLibrary = adapterLibrary;
 }
 public ComputerTreeViewItem(ILibraryAdapter adapter)
     : base(adapter)
 {
 }
Exemple #4
0
 public SongListBoxItem(ILibraryAdapter adapter, string path)
 {
     _adapter = adapter;
     _path = path;
 }
 public FileSystemDataContext(ILibraryAdapter adapter, string path)
     : this(new FolderTreeViewItem(adapter, path))
 {
 }
 public FileSystemDataContext(ILibraryAdapter adapter)
     : this(new ComputerTreeViewItem(adapter))
 {
 }