diff --git a/Perspex.Controls/Control.cs b/Perspex.Controls/Control.cs index 106469b296..2cf63cfe06 100644 --- a/Perspex.Controls/Control.cs +++ b/Perspex.Controls/Control.cs @@ -30,9 +30,6 @@ namespace Perspex.Controls public static readonly PerspexProperty ForegroundProperty = PerspexProperty.Register("Foreground", new SolidColorBrush(0xff000000), true); - public static readonly PerspexProperty ParentProperty = - PerspexProperty.Register("Parent"); - public static readonly PerspexProperty TemplatedParentProperty = PerspexProperty.Register("TemplatedParent", inherits: true); @@ -138,12 +135,6 @@ namespace Perspex.Controls } } - public Control Parent - { - get { return this.GetValue(ParentProperty); } - protected set { this.SetValue(ParentProperty, value); } - } - public Styles Styles { get