removed MatchParent value from Property Editor (#7551)

This commit is contained in:
Pavel Yakovlev 2019-09-18 01:50:33 +03:00 коммит произвёл Shane Neuville
Родитель 4f075d658e
Коммит f417a8743e
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -1,10 +1,13 @@
namespace Xamarin.Forms
using System.ComponentModel;
namespace Xamarin.Forms
{
public static class VisualMarker
{
static bool _isMaterialRegistered = false;
static bool _warnedAboutMaterial = false;
[EditorBrowsable(EditorBrowsableState.Never)]
public static IVisual MatchParent { get; } = new MatchParentVisual();
public static IVisual Default { get; } = new DefaultVisual();
public static IVisual Material { get; } = new MaterialVisual();