Added Parameter attribute to constructor parameters (#6516)

This commit is contained in:
Gerald Versluis 2019-06-17 10:41:24 +02:00 коммит произвёл Stephane Delcroix
Родитель aa0ad621bb
Коммит 1bbd2bd926
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -4,7 +4,7 @@
{
public ItemsLayoutOrientation Orientation { get; }
protected ItemsLayout(ItemsLayoutOrientation orientation)
protected ItemsLayout([Parameter("Orientation")] ItemsLayoutOrientation orientation)
{
CollectionView.VerifyCollectionViewFlagEnabled(constructorHint: nameof(ItemsLayout));
Orientation = orientation;

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

@ -3,7 +3,7 @@
public class ListItemsLayout : ItemsLayout
{
// TODO hartez 2018/08/29 17:28:42 Consider changing this name to LinearItemsLayout; not everything using it is a list (e.g., Carousel)
public ListItemsLayout(ItemsLayoutOrientation orientation) : base(orientation)
public ListItemsLayout([Parameter("Orientation")] ItemsLayoutOrientation orientation) : base(orientation)
{
}