// 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.Markup.Xaml.UnitTests.Xaml { public class NonControl : PerspexObject { public static readonly StyledProperty ControlProperty = PerspexProperty.Register("Control"); public Control Control { get { return GetValue(ControlProperty); } set { SetValue(ControlProperty, value); } } } }