12345678910111213141516171819202122232425262728293031323334353637 |
- namespace XHWK.Model
- {
- public class ModelCanvas : NotifyModel
- {
- private string _name;
-
- public string Name
- {
- get => _name;
- set { _name = value; OnPropertyChanged("Name"); }
- }
-
- private string _pic;
-
- public string Pic
- {
- get => _pic;
- set
- {
- _pic = value;
- OnPropertyChanged("Pic");
- }
- }
-
- private bool _selected;
-
- public bool Selected
- {
- get => _selected;
- set
- {
- _selected = value;
- OnPropertyChanged("Selected");
- }
- }
- }
- }
|