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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace Tango.FSE.Common.Controls
{
public class FSEGroupBox : ContentControl
{
public object Header
{
get { return (object)GetValue(HeaderProperty); }
set { SetValue(HeaderProperty, value); }
}
public static readonly DependencyProperty HeaderProperty =
DependencyProperty.Register("Header", typeof(object), typeof(FSEGroupBox), new PropertyMetadata(null));
public Brush HeaderBackground
{
get { return (Brush)GetValue(HeaderBackgroundProperty); }
set { SetValue(HeaderBackgroundProperty, value); }
}
public static readonly DependencyProperty HeaderBackgroundProperty =
DependencyProperty.Register("HeaderBackground", typeof(Brush), typeof(FSEGroupBox), new PropertyMetadata(null));
public Brush HeaderForeground
{
get { return (Brush)GetValue(HeaderForegroundProperty); }
set { SetValue(HeaderForegroundProperty, value); }
}
public static readonly DependencyProperty HeaderForegroundProperty =
DependencyProperty.Register("HeaderForeground", typeof(Brush), typeof(FSEGroupBox), new PropertyMetadata(null));
public Thickness HeaderPadding
{
get { return (Thickness)GetValue(HeaderPaddingProperty); }
set { SetValue(HeaderPaddingProperty, value); }
}
public static readonly DependencyProperty HeaderPaddingProperty =
DependencyProperty.Register("HeaderPadding", typeof(Thickness), typeof(FSEGroupBox), new PropertyMetadata(null));
public CornerRadius HeaderCornerRadius
{
get { return (CornerRadius)GetValue(HeaderCornerRadiusProperty); }
set { SetValue(HeaderCornerRadiusProperty, value); }
}
public static readonly DependencyProperty HeaderCornerRadiusProperty =
DependencyProperty.Register("HeaderCornerRadius", typeof(CornerRadius), typeof(FSEGroupBox), new PropertyMetadata(default(CornerRadius)));
public Brush HeaderBorderBrush
{
get { return (Brush)GetValue(HeaderBorderBrushProperty); }
set { SetValue(HeaderBorderBrushProperty, value); }
}
public static readonly DependencyProperty HeaderBorderBrushProperty =
DependencyProperty.Register("HeaderBorderBrush", typeof(Brush), typeof(FSEGroupBox), new PropertyMetadata(null));
public Thickness HeaderBorderThickness
{
get { return (Thickness)GetValue(HeaderBorderThicknessProperty); }
set { SetValue(HeaderBorderThicknessProperty, value); }
}
public static readonly DependencyProperty HeaderBorderThicknessProperty =
DependencyProperty.Register("HeaderBorderThickness", typeof(Thickness), typeof(FSEGroupBox), new PropertyMetadata(default(Thickness)));
public double HeaderFontSize
{
get { return (double)GetValue(HeaderFontSizeProperty); }
set { SetValue(HeaderFontSizeProperty, value); }
}
public static readonly DependencyProperty HeaderFontSizeProperty =
DependencyProperty.Register("HeaderFontSize", typeof(double), typeof(FSEGroupBox), new PropertyMetadata(12.0));
public CornerRadius CornerRadius
{
get { return (CornerRadius)GetValue(CornerRadiusProperty); }
set { SetValue(CornerRadiusProperty, value); }
}
public static readonly DependencyProperty CornerRadiusProperty =
DependencyProperty.Register("CornerRadius", typeof(CornerRadius), typeof(FSEGroupBox), new PropertyMetadata(default(CornerRadius)));
static FSEGroupBox()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(FSEGroupBox), new FrameworkPropertyMetadata(typeof(FSEGroupBox)));
}
}
}
|