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)
138else if( value is SystemThemeKey ) 140keyId = (value as SystemThemeKey).InternalKey;
src\Framework\System\Windows\SystemParameters.cs (3)
6820private static SystemThemeKey _cacheFocusVisualStyle; 6821private static SystemThemeKey _cacheNavigationChromeStyle; 6822private static SystemThemeKey _cacheNavigationChromeDownLevelStyle;
src\Framework\System\Windows\SystemResourceKey.cs (13)
2166private static SystemThemeKey _cacheSeparatorStyle; 2167private static SystemThemeKey _cacheCheckBoxStyle; 2168private static SystemThemeKey _cacheToggleButtonStyle; 2169private static SystemThemeKey _cacheButtonStyle; 2170private static SystemThemeKey _cacheRadioButtonStyle; 2171private static SystemThemeKey _cacheComboBoxStyle; 2172private static SystemThemeKey _cacheTextBoxStyle; 2173private static SystemThemeKey _cacheMenuStyle; 2177private static SystemThemeKey _menuItemSeparatorStyleKey; 2180private static SystemThemeKey _gridViewItemContainerStyleKey; 2181private static SystemThemeKey _scrollViewerStyleKey; 2182private static SystemThemeKey _gridViewStyleKey; 2183private static SystemThemeKey _statusBarSeparatorStyleKey;
src\Framework\System\Windows\SystemThemeKey.cs (2)
59SystemThemeKey key = o as SystemThemeKey;