123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.MainBusiness.Dresses.DressManagement
- {
- public partial class FrmSelectPic : LYFZ.Software.UI.Dresses.DressManagement.FrmSelectPic
- {
- public string Number;
- public FrmSelectPic()
- {
- }
- string dressImgPath = LYFZ.WinAPI.CustomPublicMethod.GetFullDirectoryPath(LYFZ.WinAPI.CustomPublicMethod.BasePath) + "Resources\\Dress.png";
- #region 加载
- protected override void FrmSelectPic_Shown(object sender, EventArgs e)
- {
- try
- {
- if (!string.IsNullOrEmpty(Number))
- {
- LYFZ.BLL.BLL_ErpDressFrom DressFromBll = new BLL.BLL_ErpDressFrom();
- DataTable dt = new DataTable();
- dt = DressFromBll.View_tb_ErpDressFrom(" and Dsfm_DressNumber='" + Number + "'").Tables[0];
- if (dt.Rows.Count > 0)
- {
- string imgePath = BLL.BLL_ErpDressFrom.GetDressFromPath() + "\\" + dt.Rows[0]["Dsfm_PicturePath"];
- if (!System.IO.File.Exists(imgePath))
- {
- imgePath = this.dressImgPath;
- }
- picDsfm_PicturePath.Image = Image.FromFile(imgePath);
- }
- }
- }
- catch (Exception ex)
- {
- MessageBoxCustom.Show(ex.Message);
- }
- }
- #endregion
- }
- }
|