aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Guides/LoadInkCartridgeGuide.cs
blob: d100b25a07809fe11e66a507fc5834c1f6d4d8e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Media.Imaging;
using Tango.SharedUI.Helpers;

namespace Tango.PPC.Maintenance.Guides
{
    public class LoadInkCartridgeGuide : GuideBase
    {
        public override string Name => "Loading an Ink Cartridge";
        public override BitmapSource Icon => ResourceHelper.GetImageFromResources("Images/Guides/loading-an-ink-cartridge.png");
        public override BitmapSource Image => ResourceHelper.GetImageFromResources("Images/Guides/machine-image.png");
        public override List<GuideStep> Steps => GetStepsFromResource("LoadInkCartridge");
    }
}