using DevExpress.Utils.Svg;
|
|
namespace Yw.WinFrmUI
|
{
|
/// <summary>
|
/// SvgImageHelper
|
/// </summary>
|
public class BimfaceMainSvgImageHelper
|
{
|
|
/// <summary>
|
/// 模块
|
/// </summary>
|
public static SvgImage Modular
|
{
|
get
|
{
|
if (_modular == null)
|
{
|
_modular = SvgImage.FromStream(new MemoryStream(Yw.WinFrmUI.Bimface.Core.Properties.Resources.bimface_modular));
|
}
|
return _modular;
|
}
|
}
|
private static SvgImage _modular = null;
|
|
/// <summary>
|
/// Bimface
|
/// </summary>
|
public static SvgImage Bimface
|
{
|
get
|
{
|
if (_bimface == null)
|
{
|
_bimface = SvgImage.FromStream(new MemoryStream(Yw.WinFrmUI.Bimface.Core.Properties.Resources.bimface));
|
}
|
return _bimface;
|
}
|
}
|
private static SvgImage _bimface = null;
|
|
|
|
}
|
}
|