You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.1 KiB
C#
94 lines
2.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SlnMesnac.WPF.Model
|
|
{
|
|
public class AgvInfo : INotifyPropertyChanged
|
|
{
|
|
private string _name;
|
|
|
|
public string Name
|
|
{
|
|
get { return _name; }
|
|
set
|
|
{
|
|
if (_name != value)
|
|
{
|
|
_name = value;
|
|
OnPropertyChanged(nameof(Name));
|
|
}
|
|
}
|
|
}
|
|
|
|
private string _battery;
|
|
|
|
public string Battery
|
|
{
|
|
get { return _battery; }
|
|
set
|
|
{
|
|
if (_battery != value)
|
|
{
|
|
_battery = value;
|
|
OnPropertyChanged(nameof(Battery));
|
|
}
|
|
}
|
|
}
|
|
|
|
private bool _isOnline;
|
|
|
|
public bool IsOnline
|
|
{
|
|
get { return _isOnline; }
|
|
set
|
|
{
|
|
if (_isOnline != value)
|
|
{
|
|
_isOnline = value;
|
|
OnPropertyChanged(nameof(IsOnline));
|
|
}
|
|
}
|
|
}
|
|
|
|
private string _status;
|
|
|
|
public string Status
|
|
{
|
|
get { return _status; }
|
|
set
|
|
{
|
|
if (value != _status)
|
|
{
|
|
_status = value;
|
|
OnPropertyChanged(nameof(Status));
|
|
}
|
|
}
|
|
}
|
|
|
|
private string _imageSource;
|
|
|
|
public string ImageSource
|
|
{
|
|
get { return _imageSource; }
|
|
set
|
|
{
|
|
if (_imageSource != value)
|
|
{
|
|
_imageSource = value;
|
|
OnPropertyChanged(nameof(ImageSource));
|
|
}
|
|
}
|
|
}
|
|
|
|
public event PropertyChangedEventHandler? PropertyChanged;
|
|
|
|
protected virtual void OnPropertyChanged(string propertyName)
|
|
{
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
|
}
|
|
}
|
|
} |