| | |
| | | { |
| | | public event PropertyChangedEventHandler PropertyChanged; |
| | | |
| | | private int _id; |
| | | |
| | | private string _filePath; |
| | | |
| | | private string _status; |
| | | public string Ext { set; get; } |
| | | |
| | | public ViewData() |
| | | { |
| | | } |
| | | |
| | | private int _id; |
| | | |
| | | public int ID |
| | | { |
| | |
| | | } |
| | | } |
| | | |
| | | private bool _checked; |
| | | |
| | | public bool Checked |
| | | { |
| | | set |
| | | { |
| | | if (_checked != value) |
| | | { |
| | | _checked = value; |
| | | ChangProperty("Checked"); |
| | | } |
| | | } |
| | | get { return _checked; } |
| | | } |
| | | |
| | | private string _filePath; |
| | | |
| | | public string FilePath |
| | | { |
| | | set |
| | |
| | | } |
| | | } |
| | | |
| | | private string _sizes; |
| | | |
| | | public string Sizes |
| | | { |
| | | set |
| | | { |
| | | if (_sizes != value) |
| | | { |
| | | _sizes = value; |
| | | ChangProperty("Sizes"); |
| | | } |
| | | } |
| | | get |
| | | { |
| | | return _sizes; |
| | | } |
| | | } |
| | | |
| | | private string _status; |
| | | |
| | | public string Status |
| | | { |
| | | set |