// ----------------------------------------------------------------------- // // 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); } } } }