FrmSelectPic.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.MainBusiness.Dresses.DressManagement
  10. {
  11. public partial class FrmSelectPic : LYFZ.Software.UI.Dresses.DressManagement.FrmSelectPic
  12. {
  13. public string Number;
  14. public FrmSelectPic()
  15. {
  16. }
  17. string dressImgPath = LYFZ.WinAPI.CustomPublicMethod.GetFullDirectoryPath(LYFZ.WinAPI.CustomPublicMethod.BasePath) + "Resources\\Dress.png";
  18. #region 加载
  19. protected override void FrmSelectPic_Shown(object sender, EventArgs e)
  20. {
  21. try
  22. {
  23. if (!string.IsNullOrEmpty(Number))
  24. {
  25. LYFZ.BLL.BLL_ErpDressFrom DressFromBll = new BLL.BLL_ErpDressFrom();
  26. DataTable dt = new DataTable();
  27. dt = DressFromBll.View_tb_ErpDressFrom(" and Dsfm_DressNumber='" + Number + "'").Tables[0];
  28. if (dt.Rows.Count > 0)
  29. {
  30. string imgePath = BLL.BLL_ErpDressFrom.GetDressFromPath() + "\\" + dt.Rows[0]["Dsfm_PicturePath"];
  31. if (!System.IO.File.Exists(imgePath))
  32. {
  33. imgePath = this.dressImgPath;
  34. }
  35. picDsfm_PicturePath.Image = Image.FromFile(imgePath);
  36. }
  37. }
  38. }
  39. catch (Exception ex)
  40. {
  41. MessageBoxCustom.Show(ex.Message);
  42. }
  43. }
  44. #endregion
  45. }
  46. }