aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Guides/LoadNewThreadGuide.cs
blob: b32be18cd2f1749abaf7af70bbfe47a3fcb45ff5 (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 LoadNewThreadGuide : GuideBase
    {
        public override string Name => "Loading New Thread";
        public override BitmapSource Icon => ResourceHelper.GetImageFromResources("Images/Guides/loading-new-thread.png");
        public override BitmapSource Image => ResourceHelper.GetImageFromResources("Images/Guides/machine-image.png");
        public override List<GuideStep> Steps => GetStepsFromResource("LoadNewThread");
    }
}