aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Guides/LoadNewThreadGuide.cs
blob: d5115a748dc2c23c1c57d63df3f5b8a1f49262e3 (plain) generated by cgit v1.3.1 (git 2.54.0) at 2026-07-29 15:21:37 +0000 ss="w"> LoadNewThreadGuide : GuideBase { public override string Name => "Loading New Thread"; public override String Image => "../Images/Guides/Loading-New-Thread.gif"; private BitmapSource _icon; public override BitmapSource Icon { get { if (_icon == null) { _icon = ResourceHelper.GetImageFromResources("Images/Guides/loading-new-thread.png"); } return _icon; } } private List<GuideStep> _steps; public override List<GuideStep> Steps { get { if (_steps == null) { _steps = GetStepsFromResource("LoadNewThread"); } return _steps; } } }}