frmWelcomeForm.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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.UI
  10. {
  11. /// <summary>
  12. /// 欢迎窗体
  13. /// </summary>
  14. public partial class frmWelcomeForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  15. {
  16. public frmWelcomeForm()
  17. {
  18. InitializeComponent();
  19. this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
  20. this.panelEx1.BackgroundImage = frmWelcomeForm.StudioImageMap; //LYFZ.WinAPI.CustomPublicMethod.GetMenuItemImage("\\影楼形象图.jpg");
  21. this.plExMainContainer.BackgroundImage = frmWelcomeForm.HomeBackground;// LYFZ.WinAPI.CustomPublicMethod.GetMenuItemImage("\\首页背景.png");
  22. SetGlassButtonClick(this.plExMainContainer.Controls);
  23. }
  24. static Image studioImageMap = null;
  25. /// <summary>
  26. /// 影楼形象图
  27. /// </summary>
  28. public static Image StudioImageMap
  29. {
  30. get
  31. {
  32. if (frmWelcomeForm.studioImageMap == null)
  33. {
  34. string imagPath = LYFZ.WinAPI.CustomPublicMethod.GetFullDirectoryPath(LYFZ.WinAPI.CustomPublicMethod.BasePath) + "Resources\\SThemeImage\\Rimg_bg.png";
  35. if (System.IO.File.Exists(imagPath))
  36. {
  37. frmWelcomeForm.studioImageMap = LYFZ.WinAPI.CustomPublicMethod.GetPathToBitmap(imagPath);
  38. }
  39. else
  40. {
  41. frmWelcomeForm.studioImageMap = LYFZ.ImageFunction.ImageOperation.GetNewBitmap(LYFZ.WinAPI.CustomPublicMethod.GetMenuItemImage("\\影楼形象图.png"));
  42. }
  43. }
  44. return frmWelcomeForm.studioImageMap;
  45. }
  46. set { frmWelcomeForm.studioImageMap = value; }
  47. }
  48. static Image homeBackground = null;
  49. /// <summary>
  50. /// 首页背景
  51. /// </summary>
  52. public static Image HomeBackground
  53. {
  54. get
  55. {
  56. if (frmWelcomeForm.homeBackground == null)
  57. {
  58. string imagPath = LYFZ.WinAPI.CustomPublicMethod.GetFullDirectoryPath(LYFZ.WinAPI.CustomPublicMethod.BasePath) + "Resources\\SThemeImage\\Bgimg_bg.png";
  59. if (System.IO.File.Exists(imagPath))
  60. {
  61. frmWelcomeForm.homeBackground = LYFZ.WinAPI.CustomPublicMethod.GetPathToBitmap(imagPath);
  62. }
  63. else
  64. {
  65. frmWelcomeForm.homeBackground = LYFZ.ImageFunction.ImageOperation.GetNewBitmap(LYFZ.WinAPI.CustomPublicMethod.GetMenuItemImage("\\首页背景.png"));
  66. }
  67. }
  68. return frmWelcomeForm.homeBackground;
  69. }
  70. set { frmWelcomeForm.homeBackground = value; }
  71. }
  72. /// <summary>
  73. ///
  74. /// </summary>
  75. /// <param name="controls"></param>
  76. void SetGlassButtonClick(Control.ControlCollection controls)
  77. {
  78. // ComponentLibrary.GlassButton
  79. foreach (Control btnControl in controls)
  80. {
  81. if (btnControl.GetType() == typeof(ComponentLibrary.GlassButton))
  82. {
  83. btnControl.Click += btnControl_Click;
  84. }
  85. }
  86. }
  87. public void btnControl_Click(object sender, EventArgs e)
  88. {
  89. ComponentLibrary.GlassButton gbtn = (ComponentLibrary.GlassButton)sender;
  90. LYFZ.Model.Model_SystemToolsMenu.Item item = new Model.Model_SystemToolsMenu.Item();
  91. item.KeyName = gbtn.Name;
  92. // item.DllFileKey = "SUMB";
  93. // item.OpenMode = "ShowEmbedded";
  94. // item.ClassFullName = "LYFZ.Software.PhotoStudio.frmWelcomeForm";//gbtn.Tag.ToString();
  95. try
  96. {
  97. string[] parameters = gbtn.Tag.ToString().Split('|');
  98. item.DllFileKey = parameters[0];
  99. item.OpenMode = parameters[1];
  100. item.ClassFullName = parameters[2];
  101. }
  102. catch
  103. {
  104. MessageBoxCustom.Show("模块参数不正确,请写管理员联系!");
  105. return;
  106. }
  107. try
  108. {
  109. //typeof(LYFZ.StandardInterface.IToolMenuClick).IsAssignableFrom(this.ParentForm.GetType())
  110. //用于判断父窗体是否实现了指定的LYFZ.StandardInterface.IToolMenuClick接口
  111. if (typeof(LYFZ.StandardInterface.IToolMenuClick).IsAssignableFrom(this.ParentForm.GetType()))
  112. {
  113. LYFZ.StandardInterface.IToolMenuClick iParentForm = (LYFZ.StandardInterface.IToolMenuClick)this.ParentForm;
  114. DynamicMenu.ToolsClickProcessingMethod(item, iParentForm);
  115. }
  116. }
  117. catch
  118. {
  119. MessageBoxCustom.Show("模块加载失败,请写管理员联系!");
  120. }
  121. }
  122. }
  123. }