-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGlobalDefaults.cs
More file actions
142 lines (117 loc) · 4.14 KB
/
GlobalDefaults.cs
File metadata and controls
142 lines (117 loc) · 4.14 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#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 GlobalDefaults
/// <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 = 128;
#endregion
#region Column3Width
/// <summary>
/// The default column width for the 3rd column, probably an image
/// </summary>
public const int Column3Width = 24;
#endregion
#region FontSize
/// <summary>
/// This property returns the Default Font Size for Labels
/// </summary>
public const double FontSize = 14;
#endregion
#region FontName
/// <summary>
/// This property returns the Default Font Name for Labels
/// </summary>
public const string FontName = "Calibri";
#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 LabelHeight
/// <summary>
/// This property returns the Default Font Size for Labels
/// </summary>
public const double LabelHeight = 20;
#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 = 1201;
#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 = 140;
#endregion
#region ZIndex
/// <summary>
/// The default ZIndex
/// </summary>
public const int ZIndex = 80;
#endregion
#endregion
}
#endregion
}