-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGlobalDefaults.cs
114 lines (93 loc) · 3.26 KB
/
GlobalDefaults.cs
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#region using statements
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
#endregion
namespace DataJuggler.Blazor.Components
{
#region class GlobalConstants
/// <summary>
/// This class is used to values are not
/// </summary>
public class GlobalDefaults
{
#region Properties
#region Column1Width
/// <summary>
/// The default column width for the 1st column, usually labels
/// </summary>
public const int Column1Width = 100;
#endregion
#region Column2Width
/// <summary>
/// The default column width for the 2nd column, usually a TextBox
/// </summary>
public const int Column2Width = 124;
#endregion
#region Column3Width
/// <summary>
/// The default column width for the 3rd column, probably an image
/// </summary>
public const int Column3Width = 24;
#endregion
#region LabelClassName
/// <summary>
/// A default LabelClassName
/// </summary>
public const string LabelClassName = "down4 right2";
#endregion
#region LabelFontName
/// <summary>
/// This property returns the Default Font Name for Labels
/// </summary>
public const string LabelFontName = "Calibri";
#endregion
#region LabelFontSize
/// <summary>
/// This property returns the Default Font Size for Labels
/// </summary>
public const double LabelFontSize = 14;
#endregion
#region ListItemHeight
/// <summary>
/// This is the default Height for items in a list
/// </summary>
public const int ListItemHeight = 18;
#endregion
#region ListItemZIndex
/// <summary>
/// This is the default ListZIndex
/// </summary>
public const int ListItemZIndex = 100;
#endregion
#region ListZIndex
/// <summary>
/// This is the default ListZIndex
/// </summary>
public const int ListZIndex = 80;
#endregion
#region TextBoxFontName
/// <summary>
/// This property returns the Default Font Name for TextBoxs
/// </summary>
public const string TextBoxFontName = "Calibri";
#endregion
#region TextBoxFontSize
/// <summary>
/// This property returns the Default Font Size for TextBoxs
/// </summary>
public const double TextBoxFontSize = 14;
#endregion
#region TextBoxWidth
/// <summary>
/// The default Width for TextBoxes
/// </summary>
public const double TextBoxWidth = 120;
#endregion
#endregion
}
#endregion
}