Files
ZuneShell.dll/UIX/Microsoft/Iris/Timer.cs
T

136 lines
3.7 KiB
C#

// Decompiled with JetBrains decompiler
// Type: Microsoft.Iris.Timer
// Assembly: UIX, Version=4.8.0.0, Culture=neutral, PublicKeyToken=ddd0da4d3e678217
// MVID: A56C6C9D-B7F6-46A9-8BDE-B3D9B8D60B11
// Assembly location: C:\Program Files\Zune\UIX.dll
using Microsoft.Iris.Markup;
using Microsoft.Iris.Session;
using System;
namespace Microsoft.Iris
{
public sealed class Timer : ModelItem, ITimerOwner
{
private DispatcherTimer _dispatcherTimer;
public Timer(IModelItemOwner owner, string description)
: base(owner, description)
{
UIDispatcher.VerifyOnApplicationThread();
this._dispatcherTimer = new DispatcherTimer(this);
}
public Timer(IModelItemOwner owner)
: this(owner, null)
{
}
public Timer()
: this(null)
{
}
protected override void OnDispose(bool disposing)
{
if (disposing)
{
UIDispatcher.VerifyOnApplicationThread();
this.Stop();
}
base.OnDispose(disposing);
}
void ITimerOwner.OnTimerPropertyChanged(string id)
{
if (object.ReferenceEquals(id, NotificationID.Interval))
this.FirePropertyChanged("TimeSpanInterval");
this.FirePropertyChanged(id);
}
public TimeSpan TimeSpanInterval
{
get
{
UIDispatcher.VerifyOnApplicationThread();
return this._dispatcherTimer.TimeSpanInterval;
}
set
{
UIDispatcher.VerifyOnApplicationThread();
this._dispatcherTimer.TimeSpanInterval = !(value < TimeSpan.Zero) ? value : throw new ArgumentException("Must have non-negative time interval");
}
}
public int Interval
{
get
{
UIDispatcher.VerifyOnApplicationThread();
return this._dispatcherTimer.Interval;
}
set
{
UIDispatcher.VerifyOnApplicationThread();
this._dispatcherTimer.Interval = value >= 0 ? value : throw new ArgumentException("Must have non-negative time interval");
}
}
public bool Enabled
{
get
{
UIDispatcher.VerifyOnApplicationThread();
return this._dispatcherTimer.Enabled;
}
set
{
UIDispatcher.VerifyOnApplicationThread();
this._dispatcherTimer.Enabled = value;
}
}
public bool AutoRepeat
{
get
{
UIDispatcher.VerifyOnApplicationThread();
return this._dispatcherTimer.AutoRepeat;
}
set
{
UIDispatcher.VerifyOnApplicationThread();
this._dispatcherTimer.AutoRepeat = value;
}
}
public event EventHandler Tick
{
add
{
UIDispatcher.VerifyOnApplicationThread();
this._dispatcherTimer.Tick += value;
}
remove
{
UIDispatcher.VerifyOnApplicationThread();
this._dispatcherTimer.Tick -= value;
}
}
public void Start()
{
UIDispatcher.VerifyOnApplicationThread();
this._dispatcherTimer.Start();
}
public void Stop()
{
UIDispatcher.VerifyOnApplicationThread();
this._dispatcherTimer.Stop();
}
public override string ToString() => this.GetType().Name + this._dispatcherTimer.ToString();
}
}