diff --git a/Perspex.Controls/Perspex.Controls.csproj b/Perspex.Controls/Perspex.Controls.csproj index 8c2e3025dc..b7e2445b7d 100644 --- a/Perspex.Controls/Perspex.Controls.csproj +++ b/Perspex.Controls/Perspex.Controls.csproj @@ -85,6 +85,7 @@ + diff --git a/Perspex.Controls/UserControl.cs b/Perspex.Controls/UserControl.cs new file mode 100644 index 0000000000..68c8571ed8 --- /dev/null +++ b/Perspex.Controls/UserControl.cs @@ -0,0 +1,19 @@ +// ----------------------------------------------------------------------- +// +// Copyright 2015 MIT Licence. See licence.md for more information. +// +// ----------------------------------------------------------------------- + +namespace Perspex.Controls +{ + using System; + using Perspex.Styling; + + public class UserControl : ContentControl, IStyleable + { + Type IStyleable.StyleKey + { + get { return typeof(ContentControl); } + } + } +}