aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/App.xaml
blob: e3b2c28f8c61bb39cbea247d87931b0a2b17d80e (plain)
1
2
3
4
5
6
7
8
9
10
11
<Application x:Class="Tango.PPC.MachineSettings.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="pack://application:,,,/Tango.PPC.Common;component/Resources/Merged.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>
e>using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Integration.Operation; using Tango.Integration.Upgrade; namespace Tango.MachineStudio.Common.FirmwareUpgrade { /// <summary> /// Firmware Upgrade Manager. /// </summary> public interface IFirmwareUpgrader { /// <summary> /// Performs a firmware upgrade. /// </summary> /// <param name="tfpStream">The TFP stream.</param> Task<FirmwareUpgradeHandler> PerformUpgrade(Stream tfpStream); /// <summary> /// Invokes the upgrade dialog. /// </summary> void InvokeUpgradeUI(); } }