StableVersion4.3/HL_FristAidPlatform_Frame/Main/Form_Index.cs

48 lines
1.4 KiB
C#

using DevExpress.XtraEditors;
using HL_FristAidPlatform_Public;
using System;
using System.Drawing;
using System.IO;
using System.Windows.Forms;
namespace HL_FristAidPlatform_Frame
{
public partial class Form_Index : XtraForm
{
public Form_Index()
{
InitializeComponent();
}
/// <summary>
/// 加载
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void Form_Index_Load(object sender, EventArgs e)
{
try
{
//判断医院LogoImageData是否为空
if (!string.IsNullOrEmpty(Information.Hospital.BgImageData))
{
MemoryStream ms = new MemoryStream(Convert.FromBase64String(Information.Hospital.BgImageData));
Image img = Image.FromStream(ms);
BackgroundImage = img;
}
//为空表示没有上传图片 则默认为系统项目中文件
else
{
BackgroundImage = Properties.Resources.indexbg;
}
BackgroundImageLayout = ImageLayout.Stretch;
}
catch (Exception ex)
{
PublicClass.WriteErrorLog(this.Text, "加载:\r\n" + ex);
}
}
}
}