DynamicMenu.cs 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Reflection;
  6. using System.Windows.Forms;
  7. namespace LYFZ.Software.UI
  8. {
  9. ///// <summary>
  10. ///// 子窗体加载模式
  11. ///// </summary>
  12. //public enum ChildFormLoadingMode
  13. //{
  14. // /// <summary>
  15. // /// 普通显示,向用户显示具有指定所有者的窗体
  16. // /// </summary>
  17. // Show = 1,
  18. // /// <summary>
  19. // /// 将窗体显示为模式对话框,并将当前活动窗口设置为它的所有者。
  20. // /// </summary>
  21. // ShowDialog = 2,
  22. // /// <summary>
  23. // /// 嵌入式
  24. // /// </summary>
  25. // ShowEmbedded = 3
  26. //}
  27. /// <summary>
  28. /// 动态菜单操作类
  29. /// </summary>
  30. public class DynamicMenu:LYFZ.DynamicMenu.DynamicMenu
  31. {
  32. /// <summary>
  33. /// 设置是否显示工具按钮说明文
  34. /// </summary>
  35. public new static bool SetShowToolsDescription(ToolStripMenuItem menuItem)
  36. {
  37. return LYFZ.DynamicMenu.DynamicMenu.SetShowToolsDescription(menuItem);
  38. }
  39. public new static string SetInterfaceSelect(ToolStripMenuItem menuItem)
  40. {
  41. return LYFZ.DynamicMenu.DynamicMenu.SetInterfaceSelect(menuItem);
  42. }
  43. #region 早期代码
  44. /* private static SortedList<string, Assembly> assemblyList = new SortedList<string, Assembly>();
  45. private static LYFZ.BLL.BLL_SystemToolsMenu bllMenu = new BLL.BLL_SystemToolsMenu(false);
  46. /// <summary>
  47. /// 当IsOverrideSystemMeun为true时设置设置重写的的菜单项
  48. /// </summary>
  49. public static List<LYFZ.Model.Model_SystemToolsMenu.Item> MenuItems = null;
  50. /// <summary>
  51. /// 嵌入式显示(时尚模式)
  52. /// </summary>
  53. /// <param name="classFullName">类全名</param>
  54. /// <param name="controls">父控件集合</param>
  55. /// <returns></returns>
  56. public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowEmbeddedFashionChildForm(string classFullName, System.Windows.Forms.Control.ControlCollection controls, string dllKey)
  57. {
  58. // LYFZ.ComponentLibrary.BaseContentsFormMain frm = DynamicMenu.ShowEmbeddedFashionChildForm(DynamicMenu.GetShowFormMain(classFullName, dllKey),controls);
  59. string frmKey = "FashionFrmKey_" +classFullName.Replace('.','_');
  60. LYFZ.ComponentLibrary.BaseContentsFormMain frm = DynamicMenu.GetSortedListInForm(frmKey);
  61. if (frm == null)
  62. {
  63. frm = DynamicMenu.ShowEmbeddedFashionChildForm(DynamicMenu.GetShowFormMain(classFullName, dllKey), controls);
  64. sFormList.Add(frmKey, frm);
  65. }
  66. return frm;
  67. }
  68. /// <summary>
  69. /// 嵌入式显示(时尚模式)
  70. /// </summary>
  71. /// <param name="classFullName">类全名</param>
  72. /// <param name="controls">父控件集合</param>
  73. /// <returns></returns>
  74. public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowEmbeddedFashionChildForm(LYFZ.ComponentLibrary.BaseContentsFormMain frm, System.Windows.Forms.Control.ControlCollection controls)
  75. {
  76. System.GC.Collect();
  77. frm.Name = "frmContainerMain";
  78. frm.TopLevel = false;
  79. frm.IsShadow = false;
  80. frm.IsMaximized = false;
  81. frm.IsShowBtnFormMenu = true;
  82. frm.IsShowBtnFormSkin = true;
  83. frm.MaximizeBox = true;
  84. frm.MinimizeBox = true;
  85. frm.FormMobile = false;
  86. frm.BottomBgImageHeight = 0;
  87. frm.IsUserControlsSize = false;
  88. frm.IsCloseForm = false;
  89. frm.IsMinimize = false;
  90. frm.IsLoginValidation = true;
  91. frm.Dock = System.Windows.Forms.DockStyle.Fill;
  92. frm.IsCustomScrollBar = true;
  93. frm.SetCoverageTitleButtonEvent();
  94. ClosThisForm(controls);
  95. controls.Clear();
  96. controls.Add(frm);
  97. frm.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  98. frm.Show();
  99. return frm;
  100. }
  101. /// <summary>
  102. /// 嵌入式显示(经典模式)
  103. /// </summary>
  104. /// <param name="classFullName">类全名</param>
  105. /// <param name="controls">父控件集合</param>
  106. /// <param name="dllKey">导入的dll唯一标识</param>
  107. /// <returns></returns>
  108. public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowEmbeddedClassicChildForm(string classFullName, System.Windows.Forms.Control.ControlCollection controls,string dllKey)
  109. {
  110. // LYFZ.ComponentLibrary.BaseContentsFormMain frm = DynamicMenu.ShowEmbeddedClassicChildForm(DynamicMenu.GetShowFormMain(classFullName, dllKey), controls); ;
  111. try
  112. {
  113. string frmKey = "ClassicFrmKey_" + classFullName.Replace('.', '_');
  114. LYFZ.ComponentLibrary.BaseContentsFormMain frm = DynamicMenu.GetSortedListInForm(frmKey);
  115. if (frm == null)
  116. {
  117. frm = DynamicMenu.ShowEmbeddedClassicChildForm(DynamicMenu.GetShowFormMain(classFullName, dllKey), controls);
  118. if (frm != null)
  119. {
  120. sFormList.Add(frmKey, frm);
  121. }
  122. }
  123. return frm;
  124. }
  125. catch { return null; }
  126. }
  127. /// <summary>
  128. /// 嵌入式显示(经典模式)
  129. /// </summary>
  130. /// <param name="frm">要显示的窗体</param>
  131. /// <param name="controls">父控件集合</param>
  132. /// <returns></returns>
  133. public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowEmbeddedClassicChildForm(LYFZ.ComponentLibrary.BaseContentsFormMain frm, System.Windows.Forms.Control.ControlCollection controls)
  134. {
  135. System.GC.Collect();
  136. if (frm != null)
  137. {
  138. frm.Name = "frmContainerMain" + LYFZ.WinAPI.CustomPublicMethod.GenerateId().ToString();
  139. frm.TopLevel = false;
  140. frm.IsShadow = false;
  141. frm.MaximizeBox = false;
  142. frm.MinimizeBox = false;
  143. frm.IsShowCloseBox = false;
  144. frm.TitleBgImageHeight = 0;
  145. frm.BottomBgImageHeight = 0;
  146. frm.IsMaximized = false;
  147. frm.FormMobile = false;
  148. frm.IsUserControlsSize = false;
  149. frm.IsLoginValidation = true;
  150. frm.Dock = System.Windows.Forms.DockStyle.Fill;
  151. frm.IsCustomScrollBar = false;
  152. ClosThisForm(controls);
  153. controls.Clear();
  154. System.GC.Collect();
  155. System.Threading.Thread.Sleep(2);
  156. frm.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  157. controls.Add(frm);
  158. try
  159. {
  160. frm.Show();
  161. AddTestBtn(frm);
  162. }
  163. catch
  164. {
  165. ShowEmbeddedClassicChildForm(GetErrorFrm(frm.GetType().FullName), controls);
  166. }
  167. }
  168. return frm;
  169. }
  170. public static void AddTestBtn(LYFZ.ComponentLibrary.BaseContentsFormMain frm)
  171. {
  172. if (!BLL.BLL_SystemGlobalSetting.IsEnableVideoButton)
  173. return;
  174. if ( MenuItems == null)
  175. {
  176. MenuItems = bllMenu.GetSystemQuickTools();
  177. MenuItems = MenuItems.Union(bllMenu.GetSystemMenuList()).ToList();
  178. List<LYFZ.Model.Model_SystemToolsMenu.ToolsGroup> list = bllMenu.GetSystemToolsList();
  179. foreach (LYFZ.Model.Model_SystemToolsMenu.ToolsGroup gp in list)
  180. {
  181. MenuItems = MenuItems.Union(gp.Items).ToList();
  182. }
  183. List<LYFZ.Model.Model_SystemToolsMenu.Item> list2 = bllMenu.GetSystemMenuList();
  184. foreach (LYFZ.Model.Model_SystemToolsMenu.Item it in list2)
  185. {
  186. MenuItems = MenuItems.Union(it.ChildItems).ToList();
  187. }
  188. }
  189. LYFZ.Model.Model_SystemToolsMenu.Item item = bllMenu.GetItemByClassName(frm.GetType().FullName, MenuItems);
  190. if (item == null || item.VideoUrl == "")
  191. return;
  192. #if !IGNORE
  193. // System.Drawing.Image imggif = null;
  194. // string imagepath = LYFZ.WinAPI.CustomPublicMethod.GetFullDirectoryPath(LYFZ.WinAPI.CustomPublicMethod.BasePath) + "Resources\\videourl.gif";
  195. // if (System.IO.File.Exists(imagepath))
  196. // {
  197. // imggif = System.Drawing.Image.FromFile(imagepath);
  198. // }
  199. //else
  200. //{
  201. //imggif = LYFZ.Software.UI.Properties.Resources.videourl;
  202. // }
  203. System.Windows.Forms.PictureBox videoBox = new PictureBox();
  204. videoBox.Width =Convert.ToInt32(227*0.5);
  205. videoBox.Height =Convert.ToInt32(196*0.5);
  206. videoBox.SizeMode = PictureBoxSizeMode.StretchImage;
  207. videoBox.Tag = item.VideoUrl;
  208. videoBox.Image = LYFZ.Software.UI.Properties.Resources.videourl;
  209. if (MyRegion == null)
  210. {
  211. MyRegion = ImageFunction.ImageProcess.ImageToRegion(
  212. GetNewBitmp(LYFZ.Software.UI.Properties.Resources.videourl, videoBox.Size),
  213. System.Drawing.Color.FromArgb(255, 0, 0, 0));
  214. }
  215. videoBox.Region = MyRegion;
  216. videoBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  217. videoBox.Location = new System.Drawing.Point(frm.Width - videoBox.Width-15, frm.Height - videoBox.Height-20);
  218. frm.Controls.Add(videoBox);
  219. videoBox.Click += testButn_Click;
  220. videoBox.BringToFront();
  221. #endif
  222. #if IGNORE
  223. LYFZ.ComponentLibrary.ButtonQQ testButn = new ComponentLibrary.ButtonQQ();
  224. testButn.Text = "我是视频 "+frm.Text;
  225. // testButn.Width = 500;
  226. // testButn.Height = 500;
  227. System.Drawing.Region rion =new System.Drawing.Region(DynamicMenu.ImageToGraphicsPath(new System.Drawing.Bitmap(@"d:\0.png")));// new System.Drawing.Region(new System.Drawing.Rectangle(100, 100, 50, 50));
  228. testButn.Region = rion;
  229. testButn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  230. testButn.Location = new System.Drawing.Point(frm.Width - 180, frm.Height-120);
  231. frm.Controls.Add(testButn);
  232. testButn.Click += testButn_Click;
  233. testButn.BringToFront();
  234. #endif
  235. }
  236. static System.Drawing.Region MyRegion=null;
  237. static void testButn_Click(object sender, EventArgs e)
  238. {
  239. System.Windows.Forms.PictureBox box = (System.Windows.Forms.PictureBox)sender;
  240. frmOfficalWebsiteVideo.SetVideo((string)box.Tag);
  241. }
  242. static System.Drawing.Image GetNewBitmp(System.Drawing.Bitmap bmp, System.Drawing.Size pSize)
  243. {
  244. // System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(path);
  245. System.Drawing.Bitmap myNewCursor = new System.Drawing.Bitmap(pSize.Width, pSize.Height);
  246. System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(myNewCursor);
  247. g.Clear(System.Drawing.Color.White);
  248. g.DrawImage(bmp, new System.Drawing.Rectangle(0, 0, myNewCursor.Width, myNewCursor.Height), new System.Drawing.Rectangle(0, 0, bmp.Width, bmp.Height), System.Drawing.GraphicsUnit.Pixel);
  249. return myNewCursor;
  250. }
  251. /// <summary>
  252. /// 根据图片计算Region路径(低效率)
  253. /// </summary>
  254. /// <param name="img">图像资源</param>
  255. /// <param name="TranColor">欲透明掉的颜色</param>
  256. /// <returns>一个离散的路径信息</returns>
  257. public static System.Drawing.Region ImageToRegion(System.Drawing.Bitmap imgx, System.Drawing.Color TranColor)
  258. {
  259. if (imgx == null) return null;
  260. System.Drawing.Region rRegion = new System.Drawing.Region();
  261. rRegion.MakeEmpty();
  262. System.Drawing.Bitmap bitmap = null;
  263. if (typeof(System.Drawing.Bitmap) == imgx.GetType())
  264. bitmap = (System.Drawing.Bitmap)imgx;
  265. else
  266. bitmap = new System.Drawing.Bitmap(imgx);
  267. int ImWidth = bitmap.Width;
  268. int ImHeight = bitmap.Height;
  269. System.Drawing.Color curColor;
  270. System.Drawing.Rectangle curRect = new System.Drawing.Rectangle();
  271. curRect.Height = 1;
  272. bool isTransRgn;
  273. for (int y = 0; y < ImHeight; y++)
  274. {
  275. isTransRgn = true;
  276. for (int x = 0; x < ImWidth; x++)
  277. {
  278. curColor = bitmap.GetPixel(x, y);
  279. if (curColor == TranColor || x == ImWidth - 1)//如果遇到透明色或行尾
  280. {
  281. if (isTransRgn == false)//退出有效区
  282. {
  283. curRect.Width = x - curRect.X;
  284. rRegion.Union(curRect);
  285. }
  286. }
  287. else//非透明色
  288. {
  289. if (isTransRgn == true)//进入有效区
  290. {
  291. curRect.X = x;
  292. curRect.Y = y;
  293. }
  294. }//if curColor
  295. isTransRgn = curColor == TranColor;
  296. }
  297. }
  298. return rRegion;
  299. }
  300. /// <summary>
  301. /// 根据图片计算GraphicsPath路径(低效率)
  302. /// </summary>
  303. /// <param name="img">图像资源</param>
  304. /// <param name="TranColor">欲透明掉的颜色</param>
  305. /// <returns>路径画布,已过滤掉了透明颜色</returns>
  306. public static System.Drawing.Drawing2D.GraphicsPath ImageToGraphicsPath(System.Drawing.Bitmap imgx)
  307. {
  308. if (imgx == null) return null;
  309. System.Drawing.Drawing2D.GraphicsPath g = new System.Drawing.Drawing2D.GraphicsPath(System.Drawing.Drawing2D.FillMode.Alternate);
  310. System.Drawing.Bitmap bitmap = null;
  311. if (typeof(System.Drawing.Bitmap) == imgx.GetType())
  312. bitmap = (System.Drawing.Bitmap)imgx;
  313. else
  314. bitmap = new System.Drawing.Bitmap(imgx);
  315. int ImWidth = bitmap.Width;
  316. int ImHeight = bitmap.Height;
  317. System.Drawing.Color curColor;
  318. System.Drawing.Rectangle curRect = new System.Drawing.Rectangle();
  319. curRect.Height = 1;
  320. bool isTransRgn;
  321. System.Drawing.Color TranColor = bitmap.GetPixel(0, 0);
  322. for (int y = 0; y < ImHeight; y++)
  323. {
  324. isTransRgn = true;
  325. for (int x = 0; x < ImWidth; x++)
  326. {
  327. curColor = bitmap.GetPixel(x, y);
  328. if (curColor == TranColor || x == ImWidth - 1)//如果遇到透明色或行尾
  329. {
  330. if (isTransRgn == false)//退出有效区
  331. {
  332. curRect.Width = x - curRect.X;
  333. g.AddRectangle(curRect);
  334. }
  335. }
  336. else//非透明色
  337. {
  338. if (isTransRgn == true)//进入有效区
  339. {
  340. curRect.X = x;
  341. curRect.Y = y;
  342. }
  343. }//if curColor
  344. isTransRgn = curColor == TranColor;
  345. }
  346. }
  347. return g;
  348. }
  349. public static void ClosThisForm(System.Windows.Forms.Control.ControlCollection controls)
  350. {
  351. for (int i = 0; i < controls.Count; i++)
  352. {
  353. System.Windows.Forms.Control control = controls[i];
  354. if (typeof(LYFZ.StandardInterface.IFormMain).IsAssignableFrom(control.GetType()))
  355. {
  356. LYFZ.StandardInterface.IFormMain iParentForm = (LYFZ.StandardInterface.IFormMain)control;
  357. iParentForm.ClosThisForm();
  358. controls.Remove(control);
  359. }
  360. if (control != null && control.IsDisposed)
  361. {
  362. control.Dispose();
  363. control = null;
  364. }
  365. }
  366. }
  367. /// <summary>
  368. /// 普通显示,向用户显示具有指定所有者的窗体
  369. /// </summary>
  370. /// <param name="classFullName">类全名</param>
  371. /// <returns></returns>
  372. public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowChildForm(string classFullName, string dllKey)
  373. {
  374. try
  375. {
  376. LYFZ.ComponentLibrary.BaseContentsFormMain frm = DynamicMenu.ShowChildForm(DynamicMenu.GetShowFormMain(classFullName, dllKey));
  377. return frm;
  378. }
  379. catch {
  380. return null;
  381. }
  382. }
  383. /// <summary>
  384. /// 普通显示,向用户显示具有指定所有者的窗体
  385. /// </summary>
  386. /// <param name="frm">要显示的窗体</param>
  387. /// <returns></returns>
  388. public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowChildForm(LYFZ.ComponentLibrary.BaseContentsFormMain frm)
  389. {
  390. if (frm != null)
  391. {
  392. try
  393. {
  394. frm.StartPosition = FormStartPosition.CenterScreen;
  395. frm.IsLoginValidation = true;
  396. frm.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  397. frm.Show();
  398. //AddTestBtn(frm);
  399. }
  400. catch { }
  401. return frm;
  402. }
  403. else { return null; }
  404. }
  405. /// <summary>
  406. /// 将窗体显示为模式对话框,并将当前活动窗口设置为它的所有者。
  407. /// </summary>
  408. /// <param name="classFullName">要显示的窗体</param>
  409. /// <returns></returns>
  410. public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowDialogChildForm(string classFullName, string dllKey)
  411. {
  412. try
  413. {
  414. LYFZ.ComponentLibrary.BaseContentsFormMain frm = DynamicMenu.ShowDialogChildForm(DynamicMenu.GetShowFormMain(classFullName, dllKey));
  415. return frm;
  416. }
  417. catch { return null; }
  418. }
  419. /// <summary>
  420. /// 将窗体显示为模式对话框,并将当前活动窗口设置为它的所有者。
  421. /// </summary>
  422. /// <param name="frm">类全名</param>
  423. /// <returns></returns>
  424. public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowDialogChildForm(LYFZ.ComponentLibrary.BaseContentsFormMain frm)
  425. {
  426. if (frm != null)
  427. {
  428. try
  429. {
  430. frm.IsLoginValidation = true;
  431. frm.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  432. frm.ShowDialog();
  433. }
  434. catch { }
  435. return frm;
  436. }else{
  437. return null;
  438. }
  439. }
  440. /// <summary>
  441. /// 根据指定完全窗体类名获取窗体实例
  442. /// </summary>
  443. /// <param name="classFullName">类全名,指定类必须是继承至LYFZ.ComponentLibrary.BaseContentsFormMain</param>
  444. /// <param name="dllKey"></param>
  445. /// <returns></returns>
  446. public static LYFZ.ComponentLibrary.BaseContentsFormMain GetShowFormMain(string classFullName, string dllKey)
  447. {
  448. try
  449. {
  450. //构造参数
  451. string[] parameters = null;
  452. if (classFullName.Contains("?"))
  453. {
  454. string[] temps = classFullName.Split('?');
  455. classFullName = temps[0];
  456. if (temps.Length > 1)
  457. {
  458. parameters = temps[1].Split('|');
  459. }
  460. }
  461. object objForm = DynamicMenu.CreateInstance(classFullName, dllKey, parameters);
  462. if (objForm != null)
  463. {
  464. LYFZ.ComponentLibrary.BaseContentsFormMain frm = (LYFZ.ComponentLibrary.BaseContentsFormMain)objForm;
  465. frm.IsShowBtnFormSkin = false;
  466. frm.IsShowBtnFormMenu = false;
  467. frm.IsCustomScrollBar = true;
  468. AddTestBtn(frm);
  469. return frm;
  470. }
  471. else { return null; }
  472. }
  473. catch
  474. {
  475. try
  476. {
  477. LYFZ.ComponentLibrary.BaseContentsFormMain tryFrm = GetErrorFrm(classFullName);
  478. return tryFrm;
  479. }
  480. catch { return null; }
  481. }
  482. }
  483. public static LYFZ.ComponentLibrary.BaseContentsFormMain GetErrorFrm(string classFullName)
  484. {
  485. LYFZ.ComponentLibrary.BaseContentsFormMain tryFrm = new ComponentLibrary.BaseContentsFormMain();
  486. tryFrm.IsShowBtnFormSkin = false;
  487. tryFrm.IsShowBtnFormMenu = false;
  488. tryFrm.IsCustomScrollBar = true;
  489. tryFrm.Text = "窗体加载失败!";
  490. tryFrm.SetError("加载名为:" + classFullName + "的窗体失败!\r\n" + "请重启应用程序或联系管理员!");
  491. // tryFrm.SetError("抱歉!当前系统为演示版,所以部分功能不开放演示,请关注我们的正试版。");
  492. return tryFrm;
  493. }
  494. /// <summary>
  495. ///
  496. /// </summary>
  497. public static SortedList<string, Assembly> AssemblyList
  498. {
  499. get {
  500. if(assemblyList.Count<=0){
  501. DynamicMenu.RefreshAssemblyList();
  502. }
  503. return DynamicMenu.assemblyList; }
  504. set { DynamicMenu.assemblyList = value; }
  505. }
  506. /// <summary>
  507. /// 刷新Dll文件导入
  508. /// </summary>
  509. /// <returns></returns>
  510. public static SortedList<string, Assembly> RefreshAssemblyList()
  511. {
  512. LYFZ.BLL.BLL_SystemToolsMenu bllDllFile = new BLL.BLL_SystemToolsMenu(false);
  513. List<LYFZ.Model.Model_SystemToolsMenu.DllFile> dllList = bllDllFile.GetImportDllList();
  514. DynamicMenu.assemblyList.Clear();
  515. foreach (LYFZ.Model.Model_SystemToolsMenu.DllFile dllModel in dllList)
  516. {
  517. Assembly assembly=Assembly.LoadFile(LYFZ.WinAPI.CustomPublicMethod.BasePath+"\\"+dllModel.FileName);
  518. DynamicMenu.assemblyList.Add(dllModel.Key, assembly);
  519. }
  520. return DynamicMenu.assemblyList;
  521. }
  522. /// <summary>
  523. /// 使用与指定参数匹配程度最高的构造函数创建指定类型的实例。
  524. /// </summary>
  525. /// <param name="classFullName">类全名</param>
  526. /// <param name="args">构造参数数组,与要调用构造函数的参数数量、顺序和类型匹配的参数数组。如果 args 为空数组或 null,则调用不带任何参数的构造函数(默认构造函数)。</param>
  527. /// <param name="dllKey"></param>
  528. /// <returns></returns>
  529. public static object CreateInstance(string classFullName,string dllKey, params object[] args)
  530. {
  531. try
  532. {
  533. System.Threading.Thread.Sleep(1);
  534. Type type = null;
  535. try
  536. {
  537. Assembly ass = AssemblyList[dllKey]; //加载dll文件
  538. type = ass.GetType(classFullName);
  539. }
  540. catch
  541. {
  542. type = Type.GetType(classFullName);
  543. }
  544. object obj = Activator.CreateInstance(type, args);
  545. return obj;
  546. }
  547. catch {
  548. return null;
  549. }
  550. }
  551. /// <summary>
  552. /// 执行指定实例的方法
  553. /// </summary>
  554. /// <param name="instance">实例对象</param>
  555. /// <param name="methodName">方法名</param>
  556. /// <param name="parameters">参数数组</param>
  557. /// <returns></returns>
  558. public static object InvokeMethod(object instance, string methodName, params object[] parameters)
  559. {
  560. try
  561. {
  562. //parameters 为 object[] obj = new object[2] { "我是反射方法", 9 };
  563. Type type = instance.GetType();
  564. object obj = instance;
  565. System.Reflection.MethodInfo mi = type.GetMethod(methodName);
  566. try
  567. {
  568. return mi.Invoke(obj, parameters);
  569. }
  570. catch
  571. {
  572. return mi.Invoke(obj, null);
  573. }
  574. }
  575. catch { return null; }
  576. }
  577. /// <summary>
  578. /// 设置实例对象指定属性的值
  579. /// </summary>
  580. /// <param name="instance">实例对象</param>
  581. /// <param name="propertyName">属性名</param>
  582. /// <param name="value">值</param>
  583. public static void SetPropertyValue(object instance, string propertyName,object value)
  584. {
  585. LYFZ.WinAPI.CustomPublicMethod.SetPropertyValue(instance, propertyName, value);
  586. }
  587. /// <summary>
  588. /// 获取实例对象指定属性的值
  589. /// </summary>
  590. /// <param name="instance">实例对象</param>
  591. /// <param name="propertyName">属性名</param>
  592. /// <returns></returns>
  593. public static object GetPropertyValue(object instance, string propertyName)
  594. {
  595. return LYFZ.WinAPI.CustomPublicMethod.GetPropertyValue(instance,propertyName);
  596. }
  597. /// <summary>
  598. /// 获取实例对象指定属性
  599. /// </summary>
  600. /// <param name="instance">实例对象</param>
  601. /// <param name="propertyName">属性名</param>
  602. /// <returns></returns>
  603. public static System.Reflection.PropertyInfo GetProperty(object instance, string propertyName)
  604. {
  605. Type type = instance.GetType();
  606. object obj = instance;
  607. System.Reflection.PropertyInfo pi = type.GetProperty(propertyName);
  608. return pi;
  609. }
  610. #region 系统菜单和工具按钮单击事件执行方法
  611. /// <summary>
  612. /// 已显示过的所有窗体集合
  613. /// </summary>
  614. private static SortedList<string, LYFZ.ComponentLibrary.BaseContentsFormMain> sFormList = new SortedList<string, ComponentLibrary.BaseContentsFormMain>();
  615. /// <summary>
  616. /// 从SortedList集合中获取已显示过的所有窗体
  617. /// </summary>
  618. /// <param name="key"></param>
  619. /// <returns></returns>
  620. public static LYFZ.ComponentLibrary.BaseContentsFormMain GetSortedListInForm(string key)
  621. {
  622. try
  623. {
  624. LYFZ.ComponentLibrary.BaseContentsFormMain frm = sFormList[key];
  625. if (frm.IsDisposed)
  626. {
  627. frm = null;
  628. sFormList.Remove(key);
  629. }
  630. return frm;
  631. }
  632. catch {
  633. sFormList.Clear();
  634. return null;
  635. }
  636. }
  637. /// <summary>
  638. /// 处理普通显示模式时的窗体方法
  639. /// </summary>
  640. /// <param name="item"></param>
  641. /// <param name="iFrm"></param>
  642. public static void ProcessinShowForm(LYFZ.Model.Model_SystemToolsMenu.Item item, LYFZ.StandardInterface.IToolMenuClick iFrm)
  643. {
  644. LYFZ.ComponentLibrary.BaseContentsFormMain frm=DynamicMenu.GetSortedListInForm(item.KeyName);
  645. if (frm != null)
  646. {
  647. DynamicMenu.ShowChildForm(frm);
  648. }
  649. else {
  650. sFormList.Add(item.KeyName, DynamicMenu.ShowChildForm(item.ClassFullName, item.DllFileKey));
  651. }
  652. }
  653. /// <summary>
  654. /// 系统菜单按钮单击事件执行方法
  655. /// </summary>
  656. /// <param name="menuItem"></param>
  657. /// <param name="frm"></param>
  658. public static void MenuItemClickProcessingMethod(object sender, EventArgs e, LYFZ.StandardInterface.IToolMenuClick iFrm)
  659. {
  660. System.GC.Collect();
  661. ToolStripMenuItem menuItem = (ToolStripMenuItem)sender;
  662. LYFZ.Model.Model_SystemToolsMenu.Item item = (LYFZ.Model.Model_SystemToolsMenu.Item)menuItem.Tag;
  663. if (item.KeyName.ToLower().Contains("ExitApplication".ToLower()))
  664. {
  665. iFrm.ExitApplication();
  666. return;
  667. }
  668. switch (item.OpenMode.ToLower())
  669. {
  670. case "show":
  671. if (iFrm != null)
  672. iFrm.SetWindowState(FormWindowState.Maximized);
  673. DynamicMenu.ProcessinShowForm(item, iFrm);
  674. break;
  675. case "showdialog":
  676. if (iFrm != null)
  677. iFrm.SetWindowState(FormWindowState.Maximized);
  678. if (iFrm.FormName == "frmMainDropzone")
  679. DynamicMenu.ProcessinShowForm(item, iFrm);
  680. else
  681. DynamicMenu.ShowDialogChildForm(item.ClassFullName, item.DllFileKey);
  682. break;
  683. case "showembedded":
  684. if (iFrm != null)
  685. iFrm.ShowChildForm(item.ClassFullName, item.DllFileKey);
  686. break;
  687. case "run":
  688. DynamicMenu.RunStart(item.ClassFullName);
  689. break;
  690. case "setshowtoolsdescription":
  691. bool isShowToolsDescriptio = (bool)DynamicMenu.InvokeMethod(DynamicMenu.CreateInstance(item.ClassFullName, item.DllFileKey, null), item.OpenMode, new object[] { menuItem });
  692. if (isShowToolsDescriptio) iFrm.RefreshTools();
  693. break;
  694. case "setinterfaceselect":
  695. SwitchedForm(iFrm, DynamicMenu.InvokeMethod(DynamicMenu.CreateInstance(item.ClassFullName, item.DllFileKey, null), item.OpenMode, new object[] { menuItem }).ToString());
  696. break;
  697. case "switchuser":
  698. if (iFrm != null)
  699. iFrm.ShowLogin(null);
  700. break;
  701. default:
  702. try
  703. {
  704. DynamicMenu.InvokeMethod(DynamicMenu.CreateInstance(item.ClassFullName, item.DllFileKey, null), item.OpenMode, new object[] { menuItem }).ToString();
  705. }
  706. catch { }
  707. break;
  708. }
  709. }
  710. /// <summary>
  711. /// 系统工具栏按钮单击事件执行方法
  712. /// </summary>
  713. /// <param name="menuItem"></param>
  714. /// <param name="frm"></param>
  715. public static void ToolsClickProcessingMethod(object sender, LYFZ.StandardInterface.IToolMenuClick iFrm)
  716. {
  717. System.GC.Collect();
  718. try
  719. {
  720. LYFZ.Model.Model_SystemToolsMenu.Item item = (LYFZ.Model.Model_SystemToolsMenu.Item)sender;
  721. if (item.ClassFullName != "" && item.ClassFullName.ToLower() != "null")
  722. {
  723. switch (item.OpenMode.ToLower())
  724. {
  725. case "show":
  726. if (iFrm!=null)
  727. iFrm.SetWindowState(FormWindowState.Maximized);
  728. DynamicMenu.ProcessinShowForm(item, iFrm);
  729. break;
  730. case "showdialog":
  731. if (iFrm != null)
  732. iFrm.SetWindowState(FormWindowState.Maximized);
  733. if (iFrm.FormName == "frmMainDropzone")
  734. DynamicMenu.ProcessinShowForm(item, iFrm);
  735. else
  736. DynamicMenu.ShowDialogChildForm(item.ClassFullName, item.DllFileKey);
  737. break;
  738. case "showembedded":
  739. if (iFrm != null)
  740. iFrm.ShowChildForm(item.ClassFullName, item.DllFileKey);
  741. break;
  742. case "run":
  743. DynamicMenu.RunStart(item.ClassFullName);
  744. break;
  745. default:
  746. try
  747. {
  748. DynamicMenu.InvokeMethod(DynamicMenu.CreateInstance(item.ClassFullName, item.DllFileKey, null), item.OpenMode, null).ToString();
  749. }
  750. catch { }
  751. break;
  752. }
  753. }
  754. }
  755. catch { }
  756. }
  757. #endregion
  758. /// <summary>
  759. /// 切换窗体
  760. /// </summary>
  761. /// <param name="formName"></param>
  762. public static void SwitchedForm(LYFZ.StandardInterface.IToolMenuClick iFrm,string formName)
  763. {
  764. if (iFrm!=null)
  765. switch (iFrm.FormName)
  766. {
  767. case "frmClassicMain":
  768. case "frmFashionMain":
  769. ShowThisMainForm(iFrm, formName);
  770. break;
  771. case "frmMainDropzone":
  772. if (frmMainDropzone.thisOpenShowClassicMain != null)
  773. {
  774. if (!frmMainDropzone.thisOpenShowClassicMain.IsDisposed)
  775. frmMainDropzone.thisOpenShowClassicMain.Close();
  776. }
  777. if (frmMainDropzone.thisOpenShowFashionMain != null)
  778. {
  779. if (!frmMainDropzone.thisOpenShowFashionMain.IsDisposed)
  780. {
  781. frmMainDropzone.thisOpenShowFashionMain.IsSwitchForms = true;
  782. frmMainDropzone.thisOpenShowFashionMain.Close();
  783. }
  784. }
  785. ShowThisMainForm(null, formName);
  786. break;
  787. default: break;
  788. }
  789. }
  790. /// <summary>
  791. /// 显示当前选的主窗体
  792. /// </summary>
  793. /// <param name="iFrm"></param>
  794. /// <param name="formName"></param>
  795. public static void ShowThisMainForm(LYFZ.StandardInterface.IToolMenuClick iFrm, string formName)
  796. {
  797. if (formName != "")
  798. {
  799. if(iFrm!=null)
  800. iFrm.CloseForm();
  801. switch (formName)
  802. {
  803. case "frmClassicMain":
  804. DynamicMenu.OpenShowClassicMain();
  805. break;
  806. case "frmFashionMain":
  807. DynamicMenu.OpenShowFashionMain();
  808. break;
  809. default: break;
  810. }
  811. }
  812. }
  813. /// <summary>
  814. /// 向显示当前主窗体添加显示子窗体
  815. /// </summary>
  816. /// <param name="iForm"></param>
  817. public static void AddChlidFormToMainForm(LYFZ.StandardInterface.IToolMenuClick iForm, string classFullName = null, string dllKey = null)
  818. {
  819. if (classFullName != null && dllKey != null)
  820. {
  821. iForm.ShowChildForm(classFullName, dllKey);
  822. }
  823. else {
  824. iForm.ShowChildForm("LYFZ.Software.PhotoStudio.frmWelcomeForm", "SPS");
  825. }
  826. }
  827. /// <summary>
  828. /// 设置经典窗体最大化最小化
  829. /// </summary>
  830. /// <param name="classFullName"></param>
  831. /// <param name="dllKey"></param>
  832. public static void SetWindowStateClassicMain(System.Windows.Forms.FormWindowState wState)
  833. {
  834. try
  835. {
  836. Assembly ass = Assembly.Load("LYFZ.Software.PhotoStudio"); //加载dll文件
  837. Type type = ass.GetType("LYFZ.Software.PhotoStudio.frmClassicMain");
  838. object obj = Activator.CreateInstance(type, null);
  839. if (frmMainDropzone.thisOpenShowClassicMain == null || frmMainDropzone.thisOpenShowClassicMain.IsDisposed)
  840. {
  841. LYFZ.Software.UI.frmClassicMain ClassicMain = (LYFZ.Software.UI.frmClassicMain)obj;
  842. ClassicMain.IsShowBtnFormMenu = true;
  843. frmMainDropzone.thisOpenShowClassicMain = ClassicMain;
  844. ClassicMain.Show();
  845. AddChlidFormToMainForm(ClassicMain, null, null);
  846. frmMainDropzone.thisOpenShowClassicMain.SetWindowState(System.Windows.Forms.FormWindowState.Maximized);
  847. }
  848. else
  849. {
  850. if (!frmMainDropzone.thisOpenShowFashionMain.Visible)
  851. frmMainDropzone.thisOpenShowClassicMain.Show();
  852. frmMainDropzone.thisOpenShowClassicMain.SetWindowState(System.Windows.Forms.FormWindowState.Maximized);
  853. }
  854. }
  855. catch
  856. {
  857. }
  858. }
  859. /// <summary>
  860. /// 设置时尚体最大化最小化
  861. /// </summary>
  862. /// <param name="classFullName"></param>
  863. /// <param name="dllKey"></param>
  864. public static void SetWindowStateFashionMain(System.Windows.Forms.FormWindowState wState)
  865. {
  866. try
  867. {
  868. Assembly ass = Assembly.Load("LYFZ.Software.PhotoStudio"); //加载dll文件
  869. Type type = ass.GetType("LYFZ.Software.PhotoStudio.frmFashionMain");
  870. object obj = Activator.CreateInstance(type, null);
  871. if (frmMainDropzone.thisOpenShowFashionMain == null || frmMainDropzone.thisOpenShowFashionMain.IsDisposed)
  872. {
  873. LYFZ.Software.UI.frmFashionMain FashionMain = (LYFZ.Software.UI.frmFashionMain)obj;
  874. frmMainDropzone.thisOpenShowFashionMain = FashionMain;
  875. FashionMain.Show();
  876. AddChlidFormToMainForm(FashionMain, null, null);
  877. frmMainDropzone.thisOpenShowClassicMain.SetWindowState(System.Windows.Forms.FormWindowState.Maximized);
  878. }
  879. else
  880. { if(!frmMainDropzone.thisOpenShowFashionMain.Visible)
  881. frmMainDropzone.thisOpenShowFashionMain.Show();
  882. frmMainDropzone.thisOpenShowClassicMain.SetWindowState(System.Windows.Forms.FormWindowState.Maximized);
  883. }
  884. }
  885. catch
  886. {
  887. }
  888. }
  889. /// <summary>
  890. /// 打开显示经典窗体
  891. /// </summary>
  892. /// <param name="classFullName"></param>
  893. /// <param name="dllKey"></param>
  894. public static void OpenShowClassicMain(string classFullName = null, string dllKey = null)
  895. {
  896. try
  897. {
  898. Assembly ass = Assembly.Load("LYFZ.Software.PhotoStudio"); //加载dll文件
  899. Type type = ass.GetType("LYFZ.Software.PhotoStudio.frmClassicMain");
  900. object obj = Activator.CreateInstance(type, null);
  901. if (frmMainDropzone.thisOpenShowClassicMain == null || frmMainDropzone.thisOpenShowClassicMain.IsDisposed)
  902. {
  903. LYFZ.Software.UI.frmClassicMain ClassicMain = (LYFZ.Software.UI.frmClassicMain)obj;
  904. ClassicMain.IsShowBtnFormMenu = true;
  905. frmMainDropzone.thisOpenShowClassicMain = ClassicMain;
  906. ClassicMain.Show();
  907. //frmMainDropzone.thisOpenShowClassicMain.SetWindowState(System.Windows.Forms.FormWindowState.Maximized);
  908. AddChlidFormToMainForm(ClassicMain, classFullName, dllKey);
  909. }
  910. else
  911. {
  912. frmMainDropzone.thisOpenShowClassicMain.Show();
  913. // frmMainDropzone.thisOpenShowClassicMain.SetWindowState(System.Windows.Forms.FormWindowState.Maximized);
  914. AddChlidFormToMainForm(frmMainDropzone.thisOpenShowClassicMain, classFullName, dllKey);
  915. }
  916. }
  917. catch
  918. {
  919. }
  920. }
  921. /// <summary>
  922. /// 打开显示时尚窗体
  923. /// </summary>
  924. /// <param name="classFullName"></param>
  925. /// <param name="dllKey"></param>
  926. public static void OpenShowFashionMain(string classFullName=null, string dllKey=null)
  927. {
  928. try
  929. {
  930. Assembly ass = Assembly.Load("LYFZ.Software.PhotoStudio"); //加载dll文件
  931. Type type = ass.GetType("LYFZ.Software.PhotoStudio.frmFashionMain");
  932. object obj = Activator.CreateInstance(type, null);
  933. if (frmMainDropzone.thisOpenShowFashionMain == null || frmMainDropzone.thisOpenShowFashionMain.IsDisposed)
  934. {
  935. LYFZ.Software.UI.frmFashionMain FashionMain = (LYFZ.Software.UI.frmFashionMain)obj;
  936. frmMainDropzone.thisOpenShowFashionMain = FashionMain;
  937. FashionMain.Show();
  938. AddChlidFormToMainForm(FashionMain, classFullName, dllKey);
  939. }
  940. else
  941. {
  942. frmMainDropzone.thisOpenShowFashionMain.Show();
  943. AddChlidFormToMainForm(frmMainDropzone.thisOpenShowFashionMain, classFullName, dllKey);
  944. }
  945. }
  946. catch
  947. {
  948. }
  949. }
  950. /// <summary>
  951. /// 运行外部应用程序
  952. /// </summary>
  953. /// <param name="path"></param>
  954. public static void RunStart(string path)
  955. {
  956. //if (System.IO.File.Exists(path))
  957. //{
  958. // System.Diagnostics.Process.Start(path);
  959. //}
  960. //else if (System.IO.File.Exists(LYFZ.WinAPI.CustomPublicMethod.BasePath+path))
  961. //{
  962. // System.Diagnostics.Process.Start(LYFZ.WinAPI.CustomPublicMethod.BasePath + path);
  963. //}
  964. if (path.Contains("|") && !path.ToLower().Contains("http://"))
  965. {
  966. string[] retValues = path.Split('|');
  967. if (retValues.Length > 1)
  968. {
  969. LYFZ.WinAPI.CustomPublicMethod.RunStart(retValues[0], retValues[1]);
  970. }
  971. else {
  972. LYFZ.WinAPI.CustomPublicMethod.RunStart(retValues[0]);
  973. }
  974. }
  975. else {
  976. LYFZ.WinAPI.CustomPublicMethod.RunStart(path);
  977. }
  978. }
  979. /// <summary>
  980. /// 设置是否显示工具按钮说明文
  981. /// </summary>
  982. public static bool SetShowToolsDescription(ToolStripMenuItem menuItem)
  983. {
  984. menuItem.Checked = !menuItem.Checked;
  985. return new LYFZ.BLL.BLL_Config().Update_IsShowToolsDescription(menuItem.Checked);
  986. }
  987. /// <summary>
  988. /// 设置界面选择
  989. /// </summary>
  990. /// <param name="menuItem"></param>
  991. public static string SetInterfaceSelect(ToolStripMenuItem menuItem)
  992. {
  993. string tempInterface = "";
  994. try
  995. {
  996. if (!menuItem.Checked)
  997. {
  998. ToolStripMenuItem parentMenuItem = (ToolStripMenuItem)menuItem.OwnerItem;
  999. string thisInterface = menuItem.Name.Split('_')[0];
  1000. foreach (ToolStripMenuItem item in parentMenuItem.DropDownItems)
  1001. {
  1002. item.Checked = false;
  1003. }
  1004. menuItem.Checked = true;
  1005. new LYFZ.BLL.BLL_Config().UpdateInterfaceSelect(thisInterface);
  1006. tempInterface = thisInterface;
  1007. }
  1008. }
  1009. catch {
  1010. }
  1011. return tempInterface;
  1012. }
  1013. private static string _IsToosClickOpen = null;
  1014. /// <summary>
  1015. /// 获取工具栏按钮是采用单击事件还是双击事件
  1016. /// </summary>
  1017. public static bool IsToosClickOpen
  1018. {
  1019. get {
  1020. if (DynamicMenu._IsToosClickOpen == null)
  1021. {
  1022. LYFZ.BLL.BLL_Config bllconfig = new BLL.BLL_Config();
  1023. DynamicMenu._IsToosClickOpen = bllconfig.GetIsToosClick().ToString();
  1024. }
  1025. return Convert.ToBoolean(_IsToosClickOpen);
  1026. }
  1027. }
  1028. /// <summary>
  1029. /// 工功列表类型
  1030. /// </summary>
  1031. public enum ToolsChatListType
  1032. {
  1033. Dropzone,
  1034. MainFrm
  1035. }
  1036. /// <summary>
  1037. /// 设置工功列表颜色
  1038. /// </summary>
  1039. /// <param name="toolsChatListControl"></param>
  1040. public static void SetToolsChatListControl(LYFZ.ComponentLibrary.ChatListControl.ToolsChatListControl toolsChatListControl,ToolsChatListType type= ToolsChatListType.MainFrm)
  1041. {
  1042. switch(type){
  1043. case ToolsChatListType.MainFrm:
  1044. toolsChatListControl.BackColor = LYFZ.ComponentLibrary.GetUIResources.ScreenMainFunctionListBgColor;
  1045. toolsChatListControl.ItemColor = LYFZ.ComponentLibrary.GetUIResources.ScreenMainFunctionListItmeBgColor;
  1046. toolsChatListControl.ItemMouseOnColor = LYFZ.ComponentLibrary.GetUIResources.ScreenMainFunctionListItemMouseMoveBgColor;
  1047. toolsChatListControl.ItmeDfTextColor = LYFZ.ComponentLibrary.GetUIResources.ScreenMainFunctionListTextColor;
  1048. toolsChatListControl.ItmeSelectTextColor = LYFZ.ComponentLibrary.GetUIResources.ScreenMainFunctionListSelectTextColor;
  1049. toolsChatListControl.ArrowColor = LYFZ.ComponentLibrary.GetUIResources.ScreenMainFunctionListArrowColor;
  1050. toolsChatListControl.SubItemMouseOnColor = LYFZ.ComponentLibrary.GetUIResources.ScreenMainFunctionListItemMouseMoveBgColor;
  1051. toolsChatListControl.SubItemColor = LYFZ.ComponentLibrary.GetUIResources.ScreenSubFunctionListItmeBgColor;
  1052. toolsChatListControl.SubItemSelectColor = LYFZ.ComponentLibrary.GetUIResources.ScreenSubFunctionListSelectColor;
  1053. toolsChatListControl.SubItmeDfTextColor = LYFZ.ComponentLibrary.GetUIResources.ScreenSubFunctionListTextColor;
  1054. toolsChatListControl.SubItmeSelectTextColor = LYFZ.ComponentLibrary.GetUIResources.ScreenSubFunctionListSelectTextColor;
  1055. toolsChatListControl.SubItemSeparateLineColor = LYFZ.ComponentLibrary.GetUIResources.ScreenSubItemSeparateLineColor;
  1056. break;
  1057. case ToolsChatListType.Dropzone:
  1058. toolsChatListControl.BackColor = LYFZ.ComponentLibrary.GetUIResources.MainFunctionListBgColor;
  1059. toolsChatListControl.ItemColor = LYFZ.ComponentLibrary.GetUIResources.MainFunctionListItmeBgColor;
  1060. toolsChatListControl.ItemMouseOnColor = LYFZ.ComponentLibrary.GetUIResources.MainFunctionListItemMouseMoveBgColor;
  1061. toolsChatListControl.ItmeDfTextColor = LYFZ.ComponentLibrary.GetUIResources.MainFunctionListTextColor;
  1062. toolsChatListControl.ItmeSelectTextColor = LYFZ.ComponentLibrary.GetUIResources.MainFunctionListSelectTextColor;
  1063. toolsChatListControl.ArrowColor = LYFZ.ComponentLibrary.GetUIResources.MainFunctionListArrowColor;
  1064. toolsChatListControl.SubItemMouseOnColor = LYFZ.ComponentLibrary.GetUIResources.MainFunctionListItemMouseMoveBgColor;
  1065. toolsChatListControl.SubItemColor = LYFZ.ComponentLibrary.GetUIResources.SubFunctionListItmeBgColor;
  1066. toolsChatListControl.SubItemSelectColor = LYFZ.ComponentLibrary.GetUIResources.SubFunctionListSelectColor;
  1067. toolsChatListControl.SubItmeDfTextColor = LYFZ.ComponentLibrary.GetUIResources.SubFunctionListTextColor;
  1068. toolsChatListControl.SubItmeSelectTextColor = LYFZ.ComponentLibrary.GetUIResources.SubFunctionListSelectTextColor;
  1069. toolsChatListControl.SubItemSeparateLineColor = LYFZ.ComponentLibrary.GetUIResources.SubItemSeparateLineColor;
  1070. break;
  1071. }
  1072. }
  1073. */
  1074. #endregion
  1075. }
  1076. }