A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

43 lines
1.3 KiB

// -----------------------------------------------------------------------
// <copyright file="WindowStyle.cs" company="Steven Kirk">
// Copyright 2014 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
namespace Perspex.Themes.Default
{
using System.Linq;
using Perspex.Controls;
using Perspex.Controls.Presenters;
using Perspex.Media;
using Perspex.Styling;
public class WindowStyle : Styles
{
public WindowStyle()
{
this.AddRange(new[]
{
new Style(x => x.OfType<Window>())
{
Setters = new[]
{
new Setter(Window.TemplateProperty, ControlTemplate.Create<Window>(this.Template)),
},
},
});
}
private Control Template(Window control)
{
return new Border
{
[~Border.BackgroundProperty] = control[~Window.BackgroundProperty],
Content = new ContentPresenter
{
[~ContentPresenter.ContentProperty] = control[~Window.ContentProperty],
}
};
}
}
}