using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using Tango.FSE.Common; using Tango.Integration.Operation; namespace Tango.FSE.UI.Tiles.RemoteJob { public class RemoteJobProgressRingTile : RemoteJobTile { public RemoteJobProgressRingTile() : base() { Name = "Remote Job Timer"; AutoContainerStyle = false; AutoTitleStyle = false; AutoTitleAlignment = System.Windows.Controls.Dock.Right; Column = 4; Row = 6; ColumnSpan = 4; RowSpan = 4; AutoTitleLineOffset = 60; RunningJobStatus.RemainingTime = TimeSpan.Zero; } public override FrameworkElement GetView() { return new RemoteJobProgressRingTileView(); } } }