frmClassicMain.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  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. public partial class frmClassicMain : BaseFormMain, LYFZ.StandardInterface.IToolMenuClick, LYFZ.ComponentLibrary.Interface.IClassicMain
  12. {
  13. LYFZ.ComponentLibrary.BaseContentsFormMain thisChildForm = null;
  14. LYFZ.BLL.BLL_SystemToolsMenu bllToolsMenu = new BLL.BLL_SystemToolsMenu(false);
  15. public frmClassicMain()
  16. {
  17. this.WindowState = FormWindowState.Maximized;
  18. InitializeComponent();
  19. this.IsShowIcon = false;
  20. this.IsShowTitle = false;
  21. DynamicMenu.SetToolsChatListControl(toolsChatListControl1);
  22. try
  23. {
  24. InitializationQuickTools();
  25. SetGlassButtonLocation();
  26. // LYFZ.Model.Model_SystemToolsMenu.DefaultWelcomeForm dfWelcomeForm = bllToolsMenu.GetDefaultWelcomeForm();
  27. // thisChildForm = DynamicMenu.ShowEmbeddedClassicChildForm(dfWelcomeForm.ClassFullName, this.spcExMainContainer.Panel2.Controls, dfWelcomeForm.DllFileKey);
  28. if (DynamicMenu.IsToosClickOpen)
  29. {
  30. this.toolsChatListControl1.ClickSubItem += new ComponentLibrary.ChatListControl.ChatListBox.ChatListEventHandler(toolsChatListControl1_ClickSubItem);
  31. }
  32. else {
  33. this.toolsChatListControl1.DoubleClickSubItem+=new ComponentLibrary.ChatListControl.ChatListBox.ChatListEventHandler(toolsChatListControl1_DoubleClickSubItem);
  34. }
  35. }
  36. catch { }
  37. }
  38. protected List<LYFZ.ComponentLibrary.GlassButton> GlassButtonList = new List<ComponentLibrary.GlassButton>();
  39. /// <summary>
  40. /// 当窗体大小变化时重新排列工具位置
  41. /// </summary>
  42. private void SetGlassButtonLocation()
  43. {
  44. try
  45. {
  46. int OffsetDistance = (this.Width - 980) / GlassButtonList.Count;
  47. if (OffsetDistance > 60) { OffsetDistance = 60; }
  48. if (this.Width > 980)
  49. {
  50. OffsetDistance += 75;
  51. }
  52. else
  53. {
  54. OffsetDistance = 75;
  55. }
  56. for (int i = 1; i < GlassButtonList.Count; i++)
  57. {
  58. GlassButtonList[i].Location = new Point(GlassButtonList[0].Location.X + i * OffsetDistance, GlassButtonList[0].Location.Y);
  59. }
  60. }
  61. catch { }
  62. }
  63. /// <summary>
  64. /// 窗体大小变化事件
  65. /// </summary>
  66. /// <param name="sender"></param>
  67. /// <param name="e"></param>
  68. private void frmClassicMain_Resize(object sender, EventArgs e)
  69. {
  70. SetGlassButtonLocation();
  71. }
  72. /// <summary>
  73. /// 在工作区显示子窗体
  74. /// </summary>
  75. /// <param name="classFullName">要显示的子窗体类名</param>
  76. public void ShowChildForm(string classFullName, string dllKey)
  77. {
  78. try
  79. {
  80. System.GC.Collect();
  81. if (LYFZ.BLL.BLL_ErpUser.WhetherTimesOut)
  82. {
  83. this.spcExMainContainer.Panel2.Enabled = false;
  84. ShowLogin();
  85. ShowChildForm(classFullName, dllKey);
  86. }
  87. else
  88. {
  89. this.spcExMainContainer.Panel2.Enabled = true;
  90. thisChildForm = DynamicMenu.ShowEmbeddedClassicChildForm(classFullName, this.spcExMainContainer.Panel2.Controls, dllKey);
  91. }
  92. if (this.WindowState != FormWindowState.Maximized)
  93. {
  94. this.WindowState = FormWindowState.Maximized;
  95. }
  96. }
  97. catch { }
  98. }
  99. /// <summary>
  100. /// 设置窗体状态
  101. /// </summary>
  102. /// <param name="wState"></param>
  103. public void SetWindowState(System.Windows.Forms.FormWindowState wState)
  104. {
  105. if (this.WindowState != wState)
  106. {
  107. this.WindowState = wState;
  108. }
  109. }
  110. /// <summary>
  111. /// 显示登录窗体
  112. /// </summary>
  113. public virtual void ShowLogin(Form subfrm = null)
  114. {
  115. }
  116. /// <summary>
  117. /// 获取窗体名
  118. /// </summary>
  119. public string FormName {
  120. get { return this.Name; }
  121. }
  122. /// <summary>
  123. /// 关闭窗体。
  124. /// </summary>
  125. public void CloseForm()
  126. {
  127. this.Close();
  128. }
  129. /// <summary>
  130. /// 退出程序
  131. /// </summary>
  132. public virtual void ExitApplication()
  133. {
  134. }
  135. /// <summary>
  136. /// 刷新工具栏按钮
  137. /// </summary>
  138. public void RefreshTools() {
  139. this.toolsChatListControl1.RefreshTools();
  140. }
  141. /// <summary>
  142. /// 在本窗体中显示指定窗体
  143. /// </summary>
  144. /// <param name="classFullName">指定窗体的类的完全名称</param>
  145. /// <param name="dllKey">指定窗体类所在的dll Key</param>
  146. /// <param name="openMode">窗体显示方式</param>
  147. public void ShowForm(string classFullName, string dllKey, string openMode)
  148. {
  149. LYFZ.Model.Model_SystemToolsMenu.Item item = new Model.Model_SystemToolsMenu.Item();
  150. item.KeyName = "indexFrm";
  151. item.DllFileKey = dllKey;
  152. item.OpenMode = openMode;
  153. item.ClassFullName = classFullName;
  154. DynamicMenu.ToolsClickProcessingMethod(item, this);
  155. }
  156. /// <summary>
  157. /// 设置菜单项单击事
  158. /// </summary>
  159. /// <param name="menuItem"></param>
  160. protected override void SetMenuItem_Click(ToolStripMenuItem menuItem)
  161. {
  162. //请实现功能
  163. LYFZ.Model.Model_SystemToolsMenu.Item item = (LYFZ.Model.Model_SystemToolsMenu.Item)menuItem.Tag;
  164. if(!item.IsChildMenu && item.ClassFullName!="" && item.ClassFullName.ToLower()!="null")
  165. menuItem.Click += new EventHandler(FrmClasscMainMenuItem_Click);
  166. }
  167. /// <summary>
  168. /// 经典窗体系统菜单项单击事件
  169. /// </summary>
  170. /// <param name="sender"></param>
  171. /// <param name="e"></param>
  172. public void FrmClasscMainMenuItem_Click(object sender, EventArgs e)
  173. {
  174. DynamicMenu.MenuItemClickProcessingMethod(sender, e, this);
  175. }
  176. /// <summary>
  177. /// 初始化快捷工具栏
  178. /// </summary>
  179. private void InitializationQuickTools()
  180. {
  181. try
  182. {
  183. List<LYFZ.Model.Model_SystemToolsMenu.Item> QuickToolsItems = bllToolsMenu.GetSystemQuickTools();
  184. int buttonX = 185;
  185. int buttonY = 25;
  186. int tempCount = 0;
  187. foreach (LYFZ.Model.Model_SystemToolsMenu.Item item in QuickToolsItems)
  188. {
  189. if (item.Text == "上传队列" && LYFZSS.SystemSpecterPossessed.ISystemSpecterPossessed.GetMySystemSpecter != LYFZSS.SystemSpecterType.SST_E)
  190. {
  191. break;
  192. }
  193. if (!item.Disable&&LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.Model.Model_UserRights.GetQuickToolsPet(),item.KeyName))
  194. {
  195. LYFZ.ComponentLibrary.GlassButton gButton = new ComponentLibrary.GlassButton();
  196. gButton.Location = new Point(buttonX + (80 * tempCount), buttonY);
  197. gButton.Text = item.Text;
  198. try
  199. {
  200. gButton.Bitmap = new Bitmap(LYFZ.WinAPI.CustomPublicMethod.GetMenuItemImage(item.Icon));
  201. }
  202. catch { }
  203. gButton.Name = item.KeyName;
  204. gButton.Tag = item;
  205. // gButton.Enabled = false;
  206. SetQuickTools_Click(gButton);
  207. this.GlassButtonList.Add(gButton);
  208. this.Controls.Add(gButton);
  209. tempCount++;
  210. }
  211. }
  212. }
  213. catch (Exception ex){
  214. MessageBoxCustom.Show("初始化快捷工具栏:"+ex.Message);
  215. }
  216. }
  217. /// <summary>
  218. /// 设置快捷工具栏单击事件 要在派生窗体中重写实现功能
  219. /// </summary>
  220. /// <param name="menuItem"></param>
  221. protected virtual void SetQuickTools_Click(LYFZ.ComponentLibrary.GlassButton glassButton)
  222. {
  223. //请在派生窗体中重写实现功能
  224. glassButton.Click += new EventHandler(glassButton_Click);
  225. }
  226. void glassButton_Click(object sender, EventArgs e)
  227. {
  228. LYFZ.ComponentLibrary.GlassButton glassButton = (LYFZ.ComponentLibrary.GlassButton)sender;
  229. DynamicMenu.ToolsClickProcessingMethod(glassButton.Tag, this);
  230. }
  231. private void toolsChatListControl1_DoubleClickSubItem(object sender, ComponentLibrary.ChatListControl.ChatListEventArgs e)
  232. {
  233. LYFZ.ComponentLibrary.ChatListControl.ChatListSubItem selectSubItem = e.SelectSubItem;
  234. if (selectSubItem.Status != LYFZ.ComponentLibrary.ChatListControl.ChatListSubItem.UserStatus.OffLine)
  235. DynamicMenu.ToolsClickProcessingMethod(selectSubItem.Tag, this);
  236. }
  237. private void toolsChatListControl1_ClickSubItem(object sender, ComponentLibrary.ChatListControl.ChatListEventArgs e)
  238. {
  239. LYFZ.ComponentLibrary.ChatListControl.ChatListSubItem selectSubItem = e.SelectSubItem;
  240. if (selectSubItem.Status != LYFZ.ComponentLibrary.ChatListControl.ChatListSubItem.UserStatus.OffLine)
  241. DynamicMenu.ToolsClickProcessingMethod(selectSubItem.Tag, this);
  242. }
  243. }
  244. }