2 changed files with 20 additions and 0 deletions
@ -0,0 +1,19 @@ |
|||
// -----------------------------------------------------------------------
|
|||
// <copyright file="UserControl.cs" company="Steven Kirk">
|
|||
// Copyright 2015 MIT Licence. See licence.md for more information.
|
|||
// </copyright>
|
|||
// -----------------------------------------------------------------------
|
|||
|
|||
namespace Perspex.Controls |
|||
{ |
|||
using System; |
|||
using Perspex.Styling; |
|||
|
|||
public class UserControl : ContentControl, IStyleable |
|||
{ |
|||
Type IStyleable.StyleKey |
|||
{ |
|||
get { return typeof(ContentControl); } |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue