-
Notifications
You must be signed in to change notification settings - Fork 1
/
Vm.cs
120 lines (108 loc) · 3.07 KB
/
Vm.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Media.Imaging;
namespace BLHXChgPainting
{
internal class Vm : INotifyPropertyChanged
{
private string _hashesPath = "";
private string _bundlePath = "";
private string _pngFile = "";
private BitmapImage _img = null;
private BitmapImage _pngImg = null;
private int _curSel = 0;
public BitmapImage Img
{
get
{
return _img;
}
set
{
_img = value;
OnPropertyChanged("Img");
OnPropertyChanged("ImgDesc");
}
}
public BitmapImage PngImg
{
get { return _pngImg; }
set
{
_pngImg = value;
OnPropertyChanged("PngImg");
OnPropertyChanged("ImgDesc");
}
}
public string ProcessTips { get; } = "注意,用以替换的png文件需自行处理透明通道,并且保证与原资源中的图片大小一致。";
public string ImgDesc
{
get
{
string str = null;
if (_img != null)
{
str += $"原图片大小:{_img.PixelWidth}x{_img.PixelHeight}";
}
if (_pngImg != null)
{
if (str != null)
{
str += ", ";
}
str += $"准备替换的图片大小:{_pngImg.PixelWidth}x{_pngImg.PixelHeight}";
}
return str;
}
}
public string HashesPath
{
get { return _hashesPath; }
set
{
_hashesPath = value;
OnPropertyChanged("HashesPath");
}
}
public string BundleFile
{
get { return _bundlePath; }
set
{
_bundlePath = value;
OnPropertyChanged("BundleFile");
}
}
public string PngFile
{
get { return _pngFile; }
set
{
_pngFile = value;
OnPropertyChanged("PngFile");
}
}
public int CurSel
{
get { return _curSel; }
set
{
_curSel = value;
OnPropertyChanged("CurSel");
}
}
public ObservableCollection<string> TextureList { get; } = new ObservableCollection<string>();
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
}