blob: 44bd03c39611a1033d4ec6bc728b857a60b508ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.Commands;
using Tango.FileSystem;
using Tango.FSE.Common;
namespace Tango.FSE.PPCConsole.ViewModels
{
public class FileSystemViewVM : FSEViewModel
{
private FileSystemItem _currentItem;
public FileSystemItem CurrentItem
{
get { return _currentItem; }
set { _currentItem = value; RaisePropertyChangedAuto(); OnCurrentItemChanged(); }
}
private String _currentPath;
public String CurrentPath
{
get { return _currentPath; }
set { _currentPath = value; RaisePropertyChangedAuto(); }
}
public RelayCommand NavigateCommand { get; set; }
public FileSystemViewVM()
{
NavigateCommand = new RelayCommand(Navigate);
}
public override void OnApplicationReady()
{
base.OnApplicationReady();
FileSystemManager manager = new FileSystemManager();
CurrentItem = FileSystemItem.FromDTO(manager.GetFolder(@"C:\"));
}
private void Navigate()
{
if (CurrentPath.IsNotNullOrEmpty())
{
FileSystemManager manager = new FileSystemManager();
CurrentItem = FileSystemItem.FromDTO(manager.GetFolder(CurrentPath));
}
}
private void OnCurrentItemChanged()
{
CurrentPath = CurrentItem.Path;
}
}
}
|