AirScout/OxyPlot/Source/OxyPlot.Wpf/MoreColors.cs

29 wiersze
936 B
C#

// --------------------------------------------------------------------------------------------------------------------
// <copyright file="MoreColors.cs" company="OxyPlot">
// Copyright (c) 2014 OxyPlot contributors
// </copyright>
// <summary>
// Defines additional <see cref="Colors" />.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace OxyPlot.Wpf
{
using System.Windows.Media;
/// <summary>
/// Defines additional <see cref="Colors" />.
/// </summary>
public static class MoreColors
{
/// <summary>
/// The undefined color.
/// </summary>
public static readonly Color Undefined = Color.FromArgb(0, 0, 0, 0);
/// <summary>
/// The automatic color.
/// </summary>
public static readonly Color Automatic = Color.FromArgb(0, 0, 0, 1);
}
}