aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Visuals/DoubleValueChangedEventArgs.cs
blob: 7c4ca571e076a5a74016a3d5654bbf76808f71fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
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);
            }
        }
    }
}
"p">; } } }