aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Guides/ReplaceThreadGuide.cs
blob: 781f3351a1b82241afec7de859d7bc6499056f1d (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 ReplaceThreadGuide : GuideBase
    {
        public override string Name => "Replacing the Thread";
        public override BitmapSource Icon => ResourceHelper.GetImageFromResources("Images/Guides/replacing-the-thread.png");
        public override BitmapSource Image => ResourceHelper.GetImageFromResources("Images/Guides/machine-image.png");
        public override List<GuideStep> Steps => GetStepsFromResource("ReplaceThread");
    }
}