// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Themes.Default { using System.Linq; using Perspex.Controls; using Perspex.Controls.Presenters; using Perspex.Media; using Perspex.Styling; public class GridSplitterStyle : Styles { public GridSplitterStyle() { this.AddRange(new[] { new Style(x => x.OfType()) { Setters = new[] { new Setter(GridSplitter.TemplateProperty, ControlTemplate.Create(this.Template)), new Setter(GridSplitter.WidthProperty, 4), }, }, }); } private Control Template(GridSplitter control) { Border border = new Border { [~Border.BackgroundProperty] = control[~GridSplitter.BackgroundProperty], }; return border; } } }