You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
919 B
43 lines
919 B
using System;
|
|
using System.ComponentModel;
|
|
using TheGameExtreme.model.card;
|
|
using SkiaSharp;
|
|
using System.Drawing;
|
|
using System.Drawing.Drawing2D;
|
|
|
|
namespace TheGameExtreme.viewmodel
|
|
{
|
|
public class CardVM : INotifyPropertyChanged
|
|
{
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
public Card View { get; set; }
|
|
|
|
protected int value;
|
|
public int Value {
|
|
get { return value; }
|
|
set
|
|
{
|
|
this.value = value;
|
|
View.Value = value;
|
|
OnPropertyChanged("Value");
|
|
}
|
|
}
|
|
protected virtual void OnPropertyChanged(string info)
|
|
{
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(info));
|
|
}
|
|
|
|
|
|
|
|
public CardVM(Card view)
|
|
{
|
|
View = view;
|
|
Value = view.Value;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|