16 instantiations of SystemThemeKey
PresentationFramework (16)
src\Framework\System\Windows\SystemParameters.cs (3)
5487
_cacheFocusVisualStyle = new
SystemThemeKey
(SystemResourceKeyID.FocusVisualStyle);
5504
_cacheNavigationChromeStyle = new
SystemThemeKey
(SystemResourceKeyID.NavigationChromeStyle);
5521
_cacheNavigationChromeDownLevelStyle = new
SystemThemeKey
(SystemResourceKeyID.NavigationChromeDownLevelStyle);
src\Framework\System\Windows\SystemResourceKey.cs (13)
1961
_menuItemSeparatorStyleKey = new
SystemThemeKey
(SystemResourceKeyID.MenuItemSeparatorStyle);
1999
_gridViewItemContainerStyleKey = new
SystemThemeKey
(SystemResourceKeyID.GridViewItemContainerStyle);
2012
_scrollViewerStyleKey = new
SystemThemeKey
(SystemResourceKeyID.GridViewScrollViewerStyle);
2025
_gridViewStyleKey = new
SystemThemeKey
(SystemResourceKeyID.GridViewStyle);
2038
_statusBarSeparatorStyleKey = new
SystemThemeKey
(SystemResourceKeyID.StatusBarSeparatorStyle);
2050
_cacheButtonStyle = new
SystemThemeKey
(SystemResourceKeyID.ToolBarButtonStyle);
2066
_cacheToggleButtonStyle = new
SystemThemeKey
(SystemResourceKeyID.ToolBarToggleButtonStyle);
2081
_cacheSeparatorStyle = new
SystemThemeKey
(SystemResourceKeyID.ToolBarSeparatorStyle);
2097
_cacheCheckBoxStyle = new
SystemThemeKey
(SystemResourceKeyID.ToolBarCheckBoxStyle);
2112
_cacheRadioButtonStyle = new
SystemThemeKey
(SystemResourceKeyID.ToolBarRadioButtonStyle);
2128
_cacheComboBoxStyle = new
SystemThemeKey
(SystemResourceKeyID.ToolBarComboBoxStyle);
2144
_cacheTextBoxStyle = new
SystemThemeKey
(SystemResourceKeyID.ToolBarTextBoxStyle);
2160
_cacheMenuStyle = new
SystemThemeKey
(SystemResourceKeyID.ToolBarMenuStyle);
20 references to SystemThemeKey
PresentationFramework (20)
src\Framework\System\Windows\SystemKeyConverter.cs (2)
138
else if( value is
SystemThemeKey
)
140
keyId = (value as
SystemThemeKey
).InternalKey;
src\Framework\System\Windows\SystemParameters.cs (3)
6820
private static
SystemThemeKey
_cacheFocusVisualStyle;
6821
private static
SystemThemeKey
_cacheNavigationChromeStyle;
6822
private static
SystemThemeKey
_cacheNavigationChromeDownLevelStyle;
src\Framework\System\Windows\SystemResourceKey.cs (13)
2166
private static
SystemThemeKey
_cacheSeparatorStyle;
2167
private static
SystemThemeKey
_cacheCheckBoxStyle;
2168
private static
SystemThemeKey
_cacheToggleButtonStyle;
2169
private static
SystemThemeKey
_cacheButtonStyle;
2170
private static
SystemThemeKey
_cacheRadioButtonStyle;
2171
private static
SystemThemeKey
_cacheComboBoxStyle;
2172
private static
SystemThemeKey
_cacheTextBoxStyle;
2173
private static
SystemThemeKey
_cacheMenuStyle;
2177
private static
SystemThemeKey
_menuItemSeparatorStyleKey;
2180
private static
SystemThemeKey
_gridViewItemContainerStyleKey;
2181
private static
SystemThemeKey
_scrollViewerStyleKey;
2182
private static
SystemThemeKey
_gridViewStyleKey;
2183
private static
SystemThemeKey
_statusBarSeparatorStyleKey;
src\Framework\System\Windows\SystemThemeKey.cs (2)
59
SystemThemeKey
key = o as
SystemThemeKey
;