18 references to UISettingsRCW
PresentationCore (11)
MS\Internal\WindowsRuntime\Windows\UI\ViewManagement\UISettings.cs (11)
19private UISettingsRCW.IUISettings3 _uisettings; 34_uisettings = GetWinRTInstance() as UISettingsRCW.IUISettings3; 56internal bool TryGetColorValue(UISettingsRCW.UIColorType desiredColor, out Color color) 90if(TryGetColorValue(UISettingsRCW.UIColorType.Accent, out Color systemAccent)) 96result &= TryGetColorValue(UISettingsRCW.UIColorType.AccentLight1, out _accentLight1); 97result &= TryGetColorValue(UISettingsRCW.UIColorType.AccentLight2, out _accentLight2); 98result &= TryGetColorValue(UISettingsRCW.UIColorType.AccentLight3, out _accentLight3); 99result &= TryGetColorValue(UISettingsRCW.UIColorType.AccentDark1, out _accentDark1); 100result &= TryGetColorValue(UISettingsRCW.UIColorType.AccentDark2, out _accentDark2); 101result &= TryGetColorValue(UISettingsRCW.UIColorType.AccentDark3, out _accentDark3); 124winRtInstance = UISettingsRCW.GetUISettingsInstance();
PresentationFramework (7)
System\Windows\SystemColors.cs (7)
2274color = AccentColorHelper.GetAccentColor(UISettingsRCW.UIColorType.Accent); 2277color = AccentColorHelper.GetAccentColor(UISettingsRCW.UIColorType.AccentLight1); 2280color = AccentColorHelper.GetAccentColor(UISettingsRCW.UIColorType.AccentLight2); 2283color = AccentColorHelper.GetAccentColor(UISettingsRCW.UIColorType.AccentLight3); 2286color = AccentColorHelper.GetAccentColor(UISettingsRCW.UIColorType.AccentDark1); 2289color = AccentColorHelper.GetAccentColor(UISettingsRCW.UIColorType.AccentDark2); 2292color = AccentColorHelper.GetAccentColor(UISettingsRCW.UIColorType.AccentDark3);