blob: 9d8b3b24e24142fd44c11c59098eaded8f625838 (
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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using Tango.SharedUI;
namespace Tango.FSE.Common
{
public abstract class DashboardTile : FSEViewModel
{
public String Name { get; set; }
public bool AutoContainerStyle { get; set; } = true;
public bool AutoTitleStyle { get; set; } = true;
public Dock AutoTitleAlignment { get; set; } = Dock.Left;
public double AutoTitleLineOffset { get; set; } = 30;
public int Column { get; set; }
public int Row { get; set; }
public int ColumnSpan { get; set; }
public int RowSpan { get; set; }
public abstract FrameworkElement GetView();
}
}
|