using DevExpress.Utils.Svg;
namespace Yw.WinFrmUI
{
///
/// SvgImageHelper
///
public class BimfaceMainSvgImageHelper
{
///
/// 模块
///
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;
///
/// Bimface
///
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;
}
}