// -----------------------------------------------------------------------
//
// Copyright 2014 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Themes.Default
{
using System.Linq;
using Perspex.Controls;
using Perspex.Layout;
using Perspex.Media;
using Perspex.Controls.Shapes;
using Perspex.Styling;
using Perspex.Controls.Presenters;
using Perspex.Controls.Primitives;
public class ListBoxItemStyle : Styles
{
public ListBoxItemStyle()
{
this.AddRange(new[]
{
new Style(x => x.OfType())
{
Setters = new[]
{
new Setter(ListBoxItem.TemplateProperty, ControlTemplate.Create(this.Template)),
},
},
new Style(x => x.OfType().Class(":selected").Template().Id("border"))
{
Setters = new[]
{
new Setter(ListBoxItem.BackgroundProperty, new SolidColorBrush(0xff086f9e)),
new Setter(ListBoxItem.ForegroundProperty, Brushes.White),
},
},
});
}
private Control Template(ListBoxItem control)
{
return new Border
{
Id = "border",
[~Border.BackgroundProperty] = control[~ListBoxItem.BackgroundProperty],
[~Border.BorderBrushProperty] = control[~ListBoxItem.BorderBrushProperty],
[~Border.BorderThicknessProperty] = control[~ListBoxItem.BorderThicknessProperty],
Content = new ContentPresenter
{
[~ContentPresenter.ContentProperty] = control[~ListBoxItem.ContentProperty],
},
};
}
}
}