-
Notifications
You must be signed in to change notification settings - Fork 1
/
Browser.cs
75 lines (64 loc) · 1.82 KB
/
Browser.cs
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Windows.Media.Imaging;
namespace BLHXChgPainting
{
internal class Node
{
public string Name { get; set; }
public bool IsDir { get; set; }
}
internal class DirectoryNode : Node
{
public ObservableCollection<Node> Childrens { get; } = new ObservableCollection<Node>();
}
internal class FileNode : Node
{
public string FullName { get; set; }
}
class Browser : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private string _dirPath = "";
private int _curSel = 0;
private BitmapImage _img = null;
public BitmapImage Img
{
get
{
return _img;
}
set
{
_img = value;
OnPropertyChanged("Img");
OnPropertyChanged("ImgDesc");
}
}
public string DirPath
{
get { return _dirPath; }
set
{
_dirPath = value;
OnPropertyChanged("DirPath");
}
}
public int CurSel
{
get { return _curSel; }
set
{
_curSel = value;
OnPropertyChanged("CurSel");
}
}
public bool ListLoading { get; set; } = false;
public ObservableCollection<string> TextureList { get; } = new ObservableCollection<string>();
public ObservableCollection<Node> Root { get; } = new ObservableCollection<Node>();
protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
}