blob: e889ec97903c7d254c86d99538a4d95e2b9a2dd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using Tango.Core;
namespace Tango.FSE.Diagnostics.Project
{
public class DiagnosticsProjectTabRowDefinition : ExtendedObject
{
private GridLength _height;
public GridLength Height
{
get { return _height; }
set { _height = value; RaisePropertyChangedAuto(); }
}
}
}
|