diff --git a/Perspex.Controls/Perspex.Controls.csproj b/Perspex.Controls/Perspex.Controls.csproj index 4e28263fed..907abbdef2 100644 --- a/Perspex.Controls/Perspex.Controls.csproj +++ b/Perspex.Controls/Perspex.Controls.csproj @@ -53,7 +53,6 @@ - diff --git a/Perspex.Controls/Presenters/IPresenter.cs b/Perspex.Controls/Presenters/IPresenter.cs index ddc3d39589..1638ce8f13 100644 --- a/Perspex.Controls/Presenters/IPresenter.cs +++ b/Perspex.Controls/Presenters/IPresenter.cs @@ -6,7 +6,7 @@ namespace Perspex.Controls.Presenters { - using Perspex.Controls.Primitives; + using Perspex.Styling; /// /// Interface for presenters such as and diff --git a/Perspex.Styling/Perspex.Styling.csproj b/Perspex.Styling/Perspex.Styling.csproj index b1e7937084..998efd32ef 100644 --- a/Perspex.Styling/Perspex.Styling.csproj +++ b/Perspex.Styling/Perspex.Styling.csproj @@ -42,6 +42,7 @@ + diff --git a/Perspex.Controls/INamed.cs b/Perspex.Styling/Styling/INamed.cs similarity index 93% rename from Perspex.Controls/INamed.cs rename to Perspex.Styling/Styling/INamed.cs index 579c731f5f..07bac0f0a2 100644 --- a/Perspex.Controls/INamed.cs +++ b/Perspex.Styling/Styling/INamed.cs @@ -4,7 +4,7 @@ // // ----------------------------------------------------------------------- -namespace Perspex.Controls +namespace Perspex.Styling { public interface INamed { diff --git a/Perspex.Styling/Styling/IStyleable.cs b/Perspex.Styling/Styling/IStyleable.cs index 007b4cbd3e..742ce3a4ad 100644 --- a/Perspex.Styling/Styling/IStyleable.cs +++ b/Perspex.Styling/Styling/IStyleable.cs @@ -11,18 +11,13 @@ namespace Perspex.Styling /// /// Interface for styleable elements. /// - public interface IStyleable : IObservablePropertyBag + public interface IStyleable : IObservablePropertyBag, INamed { /// /// Gets the list of classes for the control. /// Classes Classes { get; } - /// - /// Gets the ID of the control. - /// - string Name { get; } - /// /// Gets the type by which the control is styled. ///