SunnyUI/SunnyUI/Font/UIFontImageDefine.cs

48 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/******************************************************************************
* SunnyUI 开源控件库、工具类库、扩展类库、多页面开发框架。
* CopyRight (C) 2012-2021 ShenYongHua(沈永华).
* QQ群56829229 QQ17612584 EMailSunnyUI@QQ.Com
*
* Blog: https://www.cnblogs.com/yhuse
* Gitee: https://gitee.com/yhuse/SunnyUI
* GitHub: https://github.com/yhuse/SunnyUI
*
* SunnyUI.dll can be used for free under the GPL-3.0 license.
* If you use this code, please keep this note.
* 如果您使用此代码,请保留此说明。
******************************************************************************
* 文件名称: UFontImageDefine.cs
* 文件说明: 字体图片定义类
* 当前版本: V3.0
* 创建日期: 2020-01-01
*
* 2020-01-01: V2.2.0 增加文件说明
******************************************************************************/
#pragma warning disable 1591
using System.Drawing;
namespace Sunny.UI
{
public interface ISymbol
{
int Symbol { get; set; }
Point SymbolOffset { get; set; }
}
public enum UISymbolType
{
FontAwesomeV4 = 0,
FontAwesomeV5Brands = 1,
FontAwesomeV5Regular = 2,
FontAwesomeV5Solid = 3
}
public enum ImageFont
{
FontAwesome,
Elegant
}
}