using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
namespace ryControls.Skin
{
///
///皮肤公共类
///
public class SkinCommon
{
///
/// 是否使用默认皮肤
///
public static bool UseDefSkin = true;
///
/// 按钮皮肤
///
public static ButtonSkinInfo ButtonSkin = new ButtonSkinInfo();
}
///
/// 按钮皮肤类
///
public class ButtonSkinInfo
{
///
/// 背景颜色
///
public Color BackColor = Color.FromArgb(51, 76, 95);
///
/// 字体颜色
///
public Color ForeColor = Color.White;
///
/// 是否颜色渐变
///
public bool ColorGradient = false;
}
}