42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using CzokoŚmieciarka.DataModels.GeneralModels.Models;
|
|
using CzokoŚmieciarka.DataModels.Models;
|
|
using CzokoŚmieciarka.WPF.Annotations;
|
|
using CzokoŚmieciarka.WPF.Interfaces;
|
|
|
|
namespace CzokoŚmieciarka.WPF.Models
|
|
{
|
|
public class GarbageCollectorWPF : AObject, INotifyPropertyChanged
|
|
{
|
|
public void Move(int columns, GarbageCollector garbageCollector)
|
|
{
|
|
Location.X = garbageCollector.Position.X;
|
|
Location.Y = garbageCollector.Position.Y * columns;
|
|
}
|
|
|
|
|
|
public GarbageCollectorWPF(int columns,Coords location, string imagePath)
|
|
{
|
|
Location = new Coords(location.X, location.Y * columns);
|
|
ImagePath = imagePath;
|
|
Image = new ImageBrush(new BitmapImage(new Uri(ImagePath)));
|
|
}
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
|
|
[NotifyPropertyChangedInvocator]
|
|
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
|
|
{
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
|
}
|
|
}
|
|
}
|