| 123456789101112131415161718192021222324252627 |
- // Copyright (c) The Perspex Project. All rights reserved.
- // Licensed under the MIT license. See licence.md file in the project root for full license information.
- using Perspex.Controls;
- namespace Perspex.Layout.UnitTests
- {
- internal class TestLayoutRoot : Decorator, ILayoutRoot
- {
- public TestLayoutRoot()
- {
- ClientSize = new Size(500, 500);
- LayoutManager = new LayoutManager { Root = this };
- }
- public Size ClientSize
- {
- get;
- set;
- }
- public ILayoutManager LayoutManager
- {
- get;
- }
- }
- }
|