aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.UI/Tiles/Machine/MachineTile.cs
blob: 611c4d93ef9405bf68337d37df1822855306e0f8 (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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using Tango.FSE.Common;

namespace Tango.FSE.UI.Tiles.Machine
{
    public class MachineTile : DashboardTile
    {
        public MachineTile()
        {
            Name = "Machine Configuration";
            AutoContainerStyle = false;
            AutoTitleStyle = true;
            Column = 0;
            Row = 0;
            ColumnSpan = 4;
            RowSpan = 6;
        }

        public override FrameworkElement GetView()
        {
            return new MachineTileView();
        }
    }
}