aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/Themes/Generic.xaml
blob: e3efa0c6a63ebc03046703340801e4233b2e51f3 (plain)
1
2
3
4
5
6
7
8
9
<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:Tango.MachineStudio.UI"
    xmlns:controls="clr-namespace:Tango.MachineStudio.UI.Controls">
    
</ResourceDictionary>
span>; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.PMR.Power; using Tango.PPC.Common.Notifications; namespace Tango.PPC.UI.AppBarItems { public class PowerOffAppBarItem : AppBarItem { private StartPowerDownResponse _status; public StartPowerDownResponse Status { get { return _status; } set { _status = value; RaisePropertyChangedAuto(); } } /// <summary> /// Gets or sets the view type. /// </summary> public override Type ViewType { get { return typeof(PowerOffAppBarItemView); } } } }