29 lines
750 B
C#
29 lines
750 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Media.Imaging;
|
|
using CzokoŚmieciarka.DataModels.Models;
|
|
using CzokoŚmieciarka.WPFv2.Interfaces;
|
|
|
|
namespace CzokoŚmieciarka.WPFv2.Models
|
|
{
|
|
class Road2 : IWPFObject
|
|
{
|
|
public string ImagePath { get; set; }
|
|
public Image Image { get; set; }
|
|
public Coords Coords { get; set; }
|
|
|
|
public Road2()
|
|
{
|
|
ImagePath = AppDomain.CurrentDomain.BaseDirectory + @"..\..\Images\intersectionRED.png";
|
|
Image = new Image
|
|
{
|
|
Source = new BitmapImage(new Uri(ImagePath))
|
|
};
|
|
}
|
|
}
|
|
}
|