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.
 
 
 

39 lines
949 B

// -----------------------------------------------------------------------
// <copyright file="Brushes.cs" company="Steven Kirk">
// Copyright 2013 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
namespace Perspex.Media
{
/// <summary>
/// Predefined brushes.
/// </summary>
public static class Brushes
{
static Brushes()
{
Black = new SolidColorBrush(0xff000000);
Gray = new SolidColorBrush(0xff808080);
Red = new SolidColorBrush(0xffff0000);
}
public static SolidColorBrush Black
{
get;
private set;
}
public static SolidColorBrush Gray
{
get;
private set;
}
public static SolidColorBrush Red
{
get;
private set;
}
}
}