используя отражение, вы можете создать словарь, проверив все свойства
var result = new Dictionary<string, object>();
var type = typeof (System.Windows.SystemParameters);
var properties = type.GetProperties(BindingFlags.Public | BindingFlags.Static);
foreach(var property in properties)
{
result.Add(property.Name, property.GetValue(null, null));
}
foreach(var pair in result)
{
Console.WriteLine("{0} : {1}", pair.Key, pair.Value);
}
Это даст следующий вывод ...
FocusBorderWidth: 1
FocusBorderHeight: 1
Высокий контраст: Ложь
FocusBorderWidthKey: FocusBorderWidth
FocusBorderHeightKey: FocusBorderHeight
HighContrastKey: HighContrast
DropShadow: True
FlatMenu: True
Рабочая область: 0,0,1681,1021
DropShadowKey: DropShadow
FlatMenuKey: FlatMenu