forked from dotnet/ResXResourceManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResourceKeys.cs
More file actions
174 lines (140 loc) · 8.05 KB
/
Copy pathResourceKeys.cs
File metadata and controls
174 lines (140 loc) · 8.05 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
namespace tomenglertde.ResXManager.Styles
{
using System.Windows;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
/// <summary>
/// Resource keys for the AVL-styles.
/// </summary>
public static class ResourceKeys
{
#region Brushes
/// <summary>
/// The disabled brush
/// </summary>
public static readonly ResourceKey DisabledBrush = new ComponentResourceKey(typeof(ResourceKeys), "DisabledBrush");
/// <summary>
/// The border brush
/// </summary>
public static readonly ResourceKey BorderBrush = new ComponentResourceKey(typeof(ResourceKeys), "BorderBrush");
/// <summary>
/// The dark accent brush
/// </summary>
public static readonly ResourceKey AccentDarkBrush = new ComponentResourceKey(typeof(ResourceKeys), "AccentDarkBrush");
#endregion Brushes
#region Styles
/// <summary>
/// The resource key for the <see cref="Button"/> style.
/// </summary>
public static readonly ResourceKey ButtonStyle = new ComponentResourceKey(typeof(ResourceKeys), "ButtonStyle");
/// <summary>
/// The resource key for the <see cref="CheckBox"/> style.
/// </summary>
public static readonly ResourceKey CheckBoxStyle = new ComponentResourceKey(typeof(ResourceKeys), "CheckBoxStyle");
/// <summary>
/// The resource key for the <see cref="CheckBox"/> style of a check box inside a data grid.
/// </summary>
public static readonly ResourceKey DataGridCheckBoxEditingElementStyle = new ComponentResourceKey(typeof(ResourceKeys), "DataGridCheckBoxEditingElementStyle");
/// <summary>
/// The resource key for the <see cref="CheckBox"/> style of a check box inside a data grid.
/// </summary>
public static readonly ResourceKey DataGridCheckBoxElementStyle = new ComponentResourceKey(typeof(ResourceKeys), "DataGridCheckBoxElementStyle");
/// <summary>
/// The resource key for the <see cref="ComboBox"/> style.
/// </summary>
public static readonly ResourceKey ComboBoxStyle = new ComponentResourceKey(typeof(ResourceKeys), "ComboBoxStyle");
/// <summary>
/// The resource key for the <see cref="ComboBox"/> style of a combo box inside a data grid.
/// </summary>
public static readonly ResourceKey DataGridComboBoxEditingElementStyle = new ComponentResourceKey(typeof(ResourceKeys), "DataGridComboBoxEditingElementStyle");
/// <summary>
/// The resource key for the <see cref="ComboBox"/> style of a combo box inside a data grid.
/// </summary>
public static readonly ResourceKey DataGridComboBoxElementStyle = new ComponentResourceKey(typeof(ResourceKeys), "DataGridComboBoxElementStyle");
/// <summary>
/// The resource key for the <see cref="ContextMenu"/> style.
/// </summary>
public static readonly ResourceKey ContextMenuStyle = new ComponentResourceKey(typeof(ResourceKeys), "ContextMenuStyle");
/// <summary>
/// The resource key for a composite <see cref="ContextMenu"/> style.
/// </summary>
public static readonly ResourceKey CompositeContextMenuStyle = new ComponentResourceKey(typeof(ResourceKeys), "CompositeContextMenuStyle");
/// <summary>
/// The resource key for the <see cref="Menu"/> style.
/// </summary>
public static readonly ResourceKey MenuStyle = new ComponentResourceKey(typeof(ResourceKeys), "MenuStyle");
/// <summary>
/// The resource key for the <see cref="MenuItem"/> style.
/// </summary>
public static readonly ResourceKey MenuItemStyle = new ComponentResourceKey(typeof(ResourceKeys), "MenuItemStyle");
/// <summary>
/// The resource key for the <see cref="Separator"/> style.
/// </summary>
public static readonly ResourceKey MenuItemSeparatorStyle = new ComponentResourceKey(typeof(ResourceKeys), "MenuItemSeparatorStyle");
/// <summary>
/// The resource key for the <see cref="GridSplitter"/> style.
/// </summary>
public static readonly ResourceKey GridSplitterStyle = new ComponentResourceKey(typeof(ResourceKeys), "GridSplitterStyle");
/// <summary>
/// The resource key for the <see cref="GroupBox"/> style.
/// </summary>
public static readonly ResourceKey GroupBoxStyle = new ComponentResourceKey(typeof(ResourceKeys), "GroupBoxStyle");
/// <summary>
/// The resource key for the <see cref="ListBox"/> style.
/// </summary>
public static readonly ResourceKey ListBoxStyle = new ComponentResourceKey(typeof(ResourceKeys), "ListBoxStyle");
/// <summary>
/// The resource key for the <see cref="ListBoxItem"/> style.
/// </summary>
public static readonly ResourceKey ListBoxItemStyle = new ComponentResourceKey(typeof(ResourceKeys), "ListBoxItemStyle");
/// <summary>
/// The resource key for the <see cref="RadioButton"/> style.
/// </summary>
public static readonly ResourceKey RadioButtonStyle = new ComponentResourceKey(typeof(ResourceKeys), "RadioButtonStyle");
/// <summary>
/// The resource key for the <see cref="TabControl"/> style.
/// </summary>
public static readonly ResourceKey TabControlStyle = new ComponentResourceKey(typeof(ResourceKeys), "TabControlStyle");
/// <summary>
/// The resource key for the <see cref="TabItem"/> style.
/// </summary>
public static readonly ResourceKey TabItemStyle = new ComponentResourceKey(typeof(ResourceKeys), "TabItemStyle");
/// <summary>
/// The resource key for the <see cref="TextBox"/> style.
/// </summary>
public static readonly ResourceKey TextBoxStyle = new ComponentResourceKey(typeof(ResourceKeys), "TextBoxStyle");
/// <summary>
/// The resource key for the <see cref="ToggleButton"/> style.
/// </summary>
public static readonly ResourceKey ToggleButtonStyle = new ComponentResourceKey(typeof(ResourceKeys), "ToggleButtonStyle");
/// <summary>
/// The resource key for the <see cref="ToolTip"/> style.
/// </summary>
public static readonly ResourceKey ToolTipStyle = new ComponentResourceKey(typeof(ResourceKeys), "ToolTipStyle");
/// <summary>
/// The resource key for the <see cref="DataGrid"/> style.
/// </summary>
public static readonly ResourceKey DataGridStyle = new ComponentResourceKey(typeof(ResourceKeys), "DataGridStyle");
/// <summary>
/// The resource key for the <see cref="DataGridCell"/> style.
/// </summary>
public static readonly ResourceKey DataGridCellStyle = new ComponentResourceKey(typeof(ResourceKeys), "DataGridCellStyle");
/// <summary>
/// The resource key for the <see cref="DataGridRow"/> style.
/// </summary>
public static readonly ResourceKey DataGridRowStyle = new ComponentResourceKey(typeof(ResourceKeys), "DataGridRowStyle");
/// <summary>
/// The resource key for the <see cref="DataGridColumnHeader"/> style.
/// </summary>
public static readonly ResourceKey DataGridColumnHeaderStyle = new ComponentResourceKey(typeof(ResourceKeys), "DataGridColumnHeaderStyle");
/// <summary>
/// The resource key for the <see cref="DataGridRowHeader"/> style.
/// </summary>
public static readonly ResourceKey DataGridRowHeaderStyle = new ComponentResourceKey(typeof(ResourceKeys), "DataGridRowHeaderStyle");
/// <summary>
/// The resource key for the <see cref="Window"/> style.
/// </summary>
public static readonly ResourceKey WindowStyle = new ComponentResourceKey(typeof(ResourceKeys), "WindowStyle");
#endregion // Styles
}
}