This commit is contained in:
Matthew Leibowitz 2021-09-25 23:58:54 +02:00
Родитель 34d072f234
Коммит e5402ccb52
3 изменённых файлов: 12 добавлений и 0 удалений

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

@ -6,6 +6,10 @@ namespace Microsoft.Maui.Controls.Core.UnitTests
{
readonly List<IWindow> _windows = new List<IWindow>();
public IElementHandler Handler { get; set; }
public IElement Parent { get; set; }
public IReadOnlyList<IWindow> Windows => _windows.AsReadOnly();
public string Property { get; set; } = "Default";

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

@ -6,6 +6,10 @@ namespace Microsoft.Maui.Handlers.Benchmarks
{
readonly List<IWindow> _windows = new List<IWindow>();
public IElementHandler Handler { get; set; }
public IElement Parent { get; set; }
public IReadOnlyList<IWindow> Windows => _windows.AsReadOnly();
public IWindow CreateWindow(IActivationState state)

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

@ -6,6 +6,10 @@ namespace Microsoft.Maui.UnitTests
{
readonly List<IWindow> _windows = new List<IWindow>();
public IElementHandler Handler { get; set; }
public IElement Parent { get; set; }
public IReadOnlyList<IWindow> Windows => _windows.AsReadOnly();
public string Property { get; set; } = "Default";