[core] Add option to autoexpand categories at platform

Fixes #474
This commit is contained in:
Eric Maupin 2019-02-20 15:51:22 -05:00
Родитель f4273f41a9
Коммит 94f9056026
2 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -111,6 +111,16 @@ namespace Xamarin.PropertyEditing
set;
}
/// <summary>
/// Gets or sets whether all groups should be expanded automatically.
/// </summary>
/// <remarks>This takes precedence over <see cref="AutoExpandGroups"/>.</remarks>
public bool AutoExpandAll
{
get;
set;
}
/// <summary>
/// Gets or sets a list of the allowed arrange modes.
/// </summary>

Просмотреть файл

@ -152,6 +152,7 @@ namespace Xamarin.PropertyEditing.ViewModels
}
ArrangeModes = modes;
AutoExpand = targetPlatform.AutoExpandAll;
}
public event EventHandler ArrangedPropertiesChanged;