18 references to UISettingsRCW
PresentationCore (11)
MS\Internal\WindowsRuntime\Windows\UI\ViewManagement\UISettings.cs (11)
13
private
UISettingsRCW
.IUISettings3 _uisettings;
28
_uisettings = GetWinRTInstance() as
UISettingsRCW
.IUISettings3;
50
internal bool TryGetColorValue(
UISettingsRCW
.UIColorType desiredColor, out Color color)
84
if(TryGetColorValue(
UISettingsRCW
.UIColorType.Accent, out Color systemAccent))
90
result &= TryGetColorValue(
UISettingsRCW
.UIColorType.AccentLight1, out _accentLight1);
91
result &= TryGetColorValue(
UISettingsRCW
.UIColorType.AccentLight2, out _accentLight2);
92
result &= TryGetColorValue(
UISettingsRCW
.UIColorType.AccentLight3, out _accentLight3);
93
result &= TryGetColorValue(
UISettingsRCW
.UIColorType.AccentDark1, out _accentDark1);
94
result &= TryGetColorValue(
UISettingsRCW
.UIColorType.AccentDark2, out _accentDark2);
95
result &= TryGetColorValue(
UISettingsRCW
.UIColorType.AccentDark3, out _accentDark3);
118
winRtInstance =
UISettingsRCW
.GetUISettingsInstance();
PresentationFramework (7)
System\Windows\SystemColors.cs (7)
2272
color = AccentColorHelper.GetAccentColor(
UISettingsRCW
.UIColorType.Accent);
2275
color = AccentColorHelper.GetAccentColor(
UISettingsRCW
.UIColorType.AccentLight1);
2278
color = AccentColorHelper.GetAccentColor(
UISettingsRCW
.UIColorType.AccentLight2);
2281
color = AccentColorHelper.GetAccentColor(
UISettingsRCW
.UIColorType.AccentLight3);
2284
color = AccentColorHelper.GetAccentColor(
UISettingsRCW
.UIColorType.AccentDark1);
2287
color = AccentColorHelper.GetAccentColor(
UISettingsRCW
.UIColorType.AccentDark2);
2290
color = AccentColorHelper.GetAccentColor(
UISettingsRCW
.UIColorType.AccentDark3);