16 instantiations of SystemThemeKey
PresentationFramework (16)
System\Windows\SystemParameters.cs (3)
4903_cacheFocusVisualStyle = new SystemThemeKey(SystemResourceKeyID.FocusVisualStyle); 4920_cacheNavigationChromeStyle = new SystemThemeKey(SystemResourceKeyID.NavigationChromeStyle); 4937_cacheNavigationChromeDownLevelStyle = new SystemThemeKey(SystemResourceKeyID.NavigationChromeDownLevelStyle);
System\Windows\SystemResourceKey.cs (13)
2052_menuItemSeparatorStyleKey = new SystemThemeKey(SystemResourceKeyID.MenuItemSeparatorStyle); 2090_gridViewItemContainerStyleKey = new SystemThemeKey(SystemResourceKeyID.GridViewItemContainerStyle); 2103_scrollViewerStyleKey = new SystemThemeKey(SystemResourceKeyID.GridViewScrollViewerStyle); 2116_gridViewStyleKey = new SystemThemeKey(SystemResourceKeyID.GridViewStyle); 2129_statusBarSeparatorStyleKey = new SystemThemeKey(SystemResourceKeyID.StatusBarSeparatorStyle); 2141_cacheButtonStyle = new SystemThemeKey(SystemResourceKeyID.ToolBarButtonStyle); 2157_cacheToggleButtonStyle = new SystemThemeKey(SystemResourceKeyID.ToolBarToggleButtonStyle); 2172_cacheSeparatorStyle = new SystemThemeKey(SystemResourceKeyID.ToolBarSeparatorStyle); 2188_cacheCheckBoxStyle = new SystemThemeKey(SystemResourceKeyID.ToolBarCheckBoxStyle); 2203_cacheRadioButtonStyle = new SystemThemeKey(SystemResourceKeyID.ToolBarRadioButtonStyle); 2219_cacheComboBoxStyle = new SystemThemeKey(SystemResourceKeyID.ToolBarComboBoxStyle); 2235_cacheTextBoxStyle = new SystemThemeKey(SystemResourceKeyID.ToolBarTextBoxStyle); 2251_cacheMenuStyle = new SystemThemeKey(SystemResourceKeyID.ToolBarMenuStyle);
20 references to SystemThemeKey
PresentationFramework (20)
System\Windows\SystemKeyConverter.cs (2)
126else if( value is SystemThemeKey ) 128keyId = (value as SystemThemeKey).InternalKey;
System\Windows\SystemParameters.cs (3)
6184private static SystemThemeKey _cacheFocusVisualStyle; 6185private static SystemThemeKey _cacheNavigationChromeStyle; 6186private static SystemThemeKey _cacheNavigationChromeDownLevelStyle;
System\Windows\SystemResourceKey.cs (13)
2257private static SystemThemeKey _cacheSeparatorStyle; 2258private static SystemThemeKey _cacheCheckBoxStyle; 2259private static SystemThemeKey _cacheToggleButtonStyle; 2260private static SystemThemeKey _cacheButtonStyle; 2261private static SystemThemeKey _cacheRadioButtonStyle; 2262private static SystemThemeKey _cacheComboBoxStyle; 2263private static SystemThemeKey _cacheTextBoxStyle; 2264private static SystemThemeKey _cacheMenuStyle; 2268private static SystemThemeKey _menuItemSeparatorStyleKey; 2271private static SystemThemeKey _gridViewItemContainerStyleKey; 2272private static SystemThemeKey _scrollViewerStyleKey; 2273private static SystemThemeKey _gridViewStyleKey; 2274private static SystemThemeKey _statusBarSeparatorStyleKey;
System\Windows\SystemThemeKey.cs (2)
54SystemThemeKey key = o as SystemThemeKey;