1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Reflection;
- using System.Windows.Forms;
- namespace LYFZ.Software.UI
- {
- ///// <summary>
- ///// 子窗体加载模式
- ///// </summary>
- //public enum ChildFormLoadingMode
- //{
- // /// <summary>
- // /// 普通显示,向用户显示具有指定所有者的窗体
- // /// </summary>
- // Show = 1,
- // /// <summary>
- // /// 将窗体显示为模式对话框,并将当前活动窗口设置为它的所有者。
- // /// </summary>
- // ShowDialog = 2,
- // /// <summary>
- // /// 嵌入式
- // /// </summary>
- // ShowEmbedded = 3
- //}
- /// <summary>
- /// 动态菜单操作类
- /// </summary>
- public class DynamicMenu:LYFZ.DynamicMenu.DynamicMenu
- {
- /// <summary>
- /// 设置是否显示工具按钮说明文
- /// </summary>
- public new static bool SetShowToolsDescription(ToolStripMenuItem menuItem)
- {
- return LYFZ.DynamicMenu.DynamicMenu.SetShowToolsDescription(menuItem);
- }
- public new static string SetInterfaceSelect(ToolStripMenuItem menuItem)
- {
- return LYFZ.DynamicMenu.DynamicMenu.SetInterfaceSelect(menuItem);
- }
- #region 早期代码
- /* private static SortedList<string, Assembly> assemblyList = new SortedList<string, Assembly>();
- private static LYFZ.BLL.BLL_SystemToolsMenu bllMenu = new BLL.BLL_SystemToolsMenu(false);
- /// <summary>
- /// 当IsOverrideSystemMeun为true时设置设置重写的的菜单项
- /// </summary>
- public static List<LYFZ.Model.Model_SystemToolsMenu.Item> MenuItems = null;
- /// <summary>
- /// 嵌入式显示(时尚模式)
- /// </summary>
- /// <param name="classFullName">类全名</param>
- /// <param name="controls">父控件集合</param>
- /// <returns></returns>
- public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowEmbeddedFashionChildForm(string classFullName, System.Windows.Forms.Control.ControlCollection controls, string dllKey)
- {
- // LYFZ.ComponentLibrary.BaseContentsFormMain frm = DynamicMenu.ShowEmbeddedFashionChildForm(DynamicMenu.GetShowFormMain(classFullName, dllKey),controls);
- string frmKey = "FashionFrmKey_" +classFullName.Replace('.','_');
- LYFZ.ComponentLibrary.BaseContentsFormMain frm = DynamicMenu.GetSortedListInForm(frmKey);
- if (frm == null)
- {
- frm = DynamicMenu.ShowEmbeddedFashionChildForm(DynamicMenu.GetShowFormMain(classFullName, dllKey), controls);
- sFormList.Add(frmKey, frm);
- }
-
- return frm;
- }
-
- /// <summary>
- /// 嵌入式显示(时尚模式)
- /// </summary>
- /// <param name="classFullName">类全名</param>
- /// <param name="controls">父控件集合</param>
- /// <returns></returns>
- public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowEmbeddedFashionChildForm(LYFZ.ComponentLibrary.BaseContentsFormMain frm, System.Windows.Forms.Control.ControlCollection controls)
- {
- System.GC.Collect();
- frm.Name = "frmContainerMain";
- frm.TopLevel = false;
- frm.IsShadow = false;
- frm.IsMaximized = false;
- frm.IsShowBtnFormMenu = true;
- frm.IsShowBtnFormSkin = true;
- frm.MaximizeBox = true;
- frm.MinimizeBox = true;
- frm.FormMobile = false;
- frm.BottomBgImageHeight = 0;
- frm.IsUserControlsSize = false;
- frm.IsCloseForm = false;
- frm.IsMinimize = false;
- frm.IsLoginValidation = true;
- frm.Dock = System.Windows.Forms.DockStyle.Fill;
- frm.IsCustomScrollBar = true;
- frm.SetCoverageTitleButtonEvent();
- ClosThisForm(controls);
- controls.Clear();
- controls.Add(frm);
- frm.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
- frm.Show();
- return frm;
- }
- /// <summary>
- /// 嵌入式显示(经典模式)
- /// </summary>
- /// <param name="classFullName">类全名</param>
- /// <param name="controls">父控件集合</param>
- /// <param name="dllKey">导入的dll唯一标识</param>
- /// <returns></returns>
- public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowEmbeddedClassicChildForm(string classFullName, System.Windows.Forms.Control.ControlCollection controls,string dllKey)
- {
- // LYFZ.ComponentLibrary.BaseContentsFormMain frm = DynamicMenu.ShowEmbeddedClassicChildForm(DynamicMenu.GetShowFormMain(classFullName, dllKey), controls); ;
- try
- {
- string frmKey = "ClassicFrmKey_" + classFullName.Replace('.', '_');
- LYFZ.ComponentLibrary.BaseContentsFormMain frm = DynamicMenu.GetSortedListInForm(frmKey);
- if (frm == null)
- {
- frm = DynamicMenu.ShowEmbeddedClassicChildForm(DynamicMenu.GetShowFormMain(classFullName, dllKey), controls);
- if (frm != null)
- {
- sFormList.Add(frmKey, frm);
- }
- }
- return frm;
- }
- catch { return null; }
- }
- /// <summary>
- /// 嵌入式显示(经典模式)
- /// </summary>
- /// <param name="frm">要显示的窗体</param>
- /// <param name="controls">父控件集合</param>
- /// <returns></returns>
- public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowEmbeddedClassicChildForm(LYFZ.ComponentLibrary.BaseContentsFormMain frm, System.Windows.Forms.Control.ControlCollection controls)
- {
- System.GC.Collect();
- if (frm != null)
- {
- frm.Name = "frmContainerMain" + LYFZ.WinAPI.CustomPublicMethod.GenerateId().ToString();
- frm.TopLevel = false;
- frm.IsShadow = false;
- frm.MaximizeBox = false;
- frm.MinimizeBox = false;
- frm.IsShowCloseBox = false;
- frm.TitleBgImageHeight = 0;
- frm.BottomBgImageHeight = 0;
- frm.IsMaximized = false;
- frm.FormMobile = false;
- frm.IsUserControlsSize = false;
- frm.IsLoginValidation = true;
- frm.Dock = System.Windows.Forms.DockStyle.Fill;
- frm.IsCustomScrollBar = false;
- ClosThisForm(controls);
- controls.Clear();
- System.GC.Collect();
- System.Threading.Thread.Sleep(2);
- frm.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
-
- controls.Add(frm);
- try
- {
- frm.Show();
- AddTestBtn(frm);
- }
- catch
- {
- ShowEmbeddedClassicChildForm(GetErrorFrm(frm.GetType().FullName), controls);
- }
- }
- return frm;
- }
- public static void AddTestBtn(LYFZ.ComponentLibrary.BaseContentsFormMain frm)
- {
- if (!BLL.BLL_SystemGlobalSetting.IsEnableVideoButton)
- return;
- if ( MenuItems == null)
- {
- MenuItems = bllMenu.GetSystemQuickTools();
- MenuItems = MenuItems.Union(bllMenu.GetSystemMenuList()).ToList();
- List<LYFZ.Model.Model_SystemToolsMenu.ToolsGroup> list = bllMenu.GetSystemToolsList();
- foreach (LYFZ.Model.Model_SystemToolsMenu.ToolsGroup gp in list)
- {
- MenuItems = MenuItems.Union(gp.Items).ToList();
- }
- List<LYFZ.Model.Model_SystemToolsMenu.Item> list2 = bllMenu.GetSystemMenuList();
- foreach (LYFZ.Model.Model_SystemToolsMenu.Item it in list2)
- {
- MenuItems = MenuItems.Union(it.ChildItems).ToList();
- }
- }
- LYFZ.Model.Model_SystemToolsMenu.Item item = bllMenu.GetItemByClassName(frm.GetType().FullName, MenuItems);
- if (item == null || item.VideoUrl == "")
- return;
- #if !IGNORE
- // System.Drawing.Image imggif = null;
- // string imagepath = LYFZ.WinAPI.CustomPublicMethod.GetFullDirectoryPath(LYFZ.WinAPI.CustomPublicMethod.BasePath) + "Resources\\videourl.gif";
- // if (System.IO.File.Exists(imagepath))
- // {
- // imggif = System.Drawing.Image.FromFile(imagepath);
- // }
- //else
- //{
- //imggif = LYFZ.Software.UI.Properties.Resources.videourl;
- // }
- System.Windows.Forms.PictureBox videoBox = new PictureBox();
- videoBox.Width =Convert.ToInt32(227*0.5);
- videoBox.Height =Convert.ToInt32(196*0.5);
- videoBox.SizeMode = PictureBoxSizeMode.StretchImage;
- videoBox.Tag = item.VideoUrl;
- videoBox.Image = LYFZ.Software.UI.Properties.Resources.videourl;
- if (MyRegion == null)
- {
- MyRegion = ImageFunction.ImageProcess.ImageToRegion(
- GetNewBitmp(LYFZ.Software.UI.Properties.Resources.videourl, videoBox.Size),
- System.Drawing.Color.FromArgb(255, 0, 0, 0));
- }
- videoBox.Region = MyRegion;
- videoBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- videoBox.Location = new System.Drawing.Point(frm.Width - videoBox.Width-15, frm.Height - videoBox.Height-20);
- frm.Controls.Add(videoBox);
- videoBox.Click += testButn_Click;
- videoBox.BringToFront();
- #endif
- #if IGNORE
- LYFZ.ComponentLibrary.ButtonQQ testButn = new ComponentLibrary.ButtonQQ();
- testButn.Text = "我是视频 "+frm.Text;
- // testButn.Width = 500;
- // testButn.Height = 500;
- 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));
- testButn.Region = rion;
- testButn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- testButn.Location = new System.Drawing.Point(frm.Width - 180, frm.Height-120);
- frm.Controls.Add(testButn);
- testButn.Click += testButn_Click;
- testButn.BringToFront();
- #endif
- }
- static System.Drawing.Region MyRegion=null;
- static void testButn_Click(object sender, EventArgs e)
- {
- System.Windows.Forms.PictureBox box = (System.Windows.Forms.PictureBox)sender;
- frmOfficalWebsiteVideo.SetVideo((string)box.Tag);
- }
- static System.Drawing.Image GetNewBitmp(System.Drawing.Bitmap bmp, System.Drawing.Size pSize)
- {
- // System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(path);
- System.Drawing.Bitmap myNewCursor = new System.Drawing.Bitmap(pSize.Width, pSize.Height);
- System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(myNewCursor);
- g.Clear(System.Drawing.Color.White);
- 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);
- return myNewCursor;
- }
- /// <summary>
- /// 根据图片计算Region路径(低效率)
- /// </summary>
- /// <param name="img">图像资源</param>
- /// <param name="TranColor">欲透明掉的颜色</param>
- /// <returns>一个离散的路径信息</returns>
- public static System.Drawing.Region ImageToRegion(System.Drawing.Bitmap imgx, System.Drawing.Color TranColor)
- {
- if (imgx == null) return null;
- System.Drawing.Region rRegion = new System.Drawing.Region();
- rRegion.MakeEmpty();
- System.Drawing.Bitmap bitmap = null;
- if (typeof(System.Drawing.Bitmap) == imgx.GetType())
- bitmap = (System.Drawing.Bitmap)imgx;
- else
- bitmap = new System.Drawing.Bitmap(imgx);
- int ImWidth = bitmap.Width;
- int ImHeight = bitmap.Height;
- System.Drawing.Color curColor;
- System.Drawing.Rectangle curRect = new System.Drawing.Rectangle();
- curRect.Height = 1;
- bool isTransRgn;
- for (int y = 0; y < ImHeight; y++)
- {
- isTransRgn = true;
- for (int x = 0; x < ImWidth; x++)
- {
- curColor = bitmap.GetPixel(x, y);
- if (curColor == TranColor || x == ImWidth - 1)//如果遇到透明色或行尾
- {
- if (isTransRgn == false)//退出有效区
- {
- curRect.Width = x - curRect.X;
- rRegion.Union(curRect);
-
- }
- }
- else//非透明色
- {
- if (isTransRgn == true)//进入有效区
- {
- curRect.X = x;
- curRect.Y = y;
- }
- }//if curColor
- isTransRgn = curColor == TranColor;
- }
- }
- return rRegion;
- }
- /// <summary>
- /// 根据图片计算GraphicsPath路径(低效率)
- /// </summary>
- /// <param name="img">图像资源</param>
- /// <param name="TranColor">欲透明掉的颜色</param>
- /// <returns>路径画布,已过滤掉了透明颜色</returns>
- public static System.Drawing.Drawing2D.GraphicsPath ImageToGraphicsPath(System.Drawing.Bitmap imgx)
- {
- if (imgx == null) return null;
- System.Drawing.Drawing2D.GraphicsPath g = new System.Drawing.Drawing2D.GraphicsPath(System.Drawing.Drawing2D.FillMode.Alternate);
- System.Drawing.Bitmap bitmap = null;
- if (typeof(System.Drawing.Bitmap) == imgx.GetType())
- bitmap = (System.Drawing.Bitmap)imgx;
- else
- bitmap = new System.Drawing.Bitmap(imgx);
- int ImWidth = bitmap.Width;
- int ImHeight = bitmap.Height;
- System.Drawing.Color curColor;
- System.Drawing.Rectangle curRect = new System.Drawing.Rectangle();
- curRect.Height = 1;
- bool isTransRgn;
- System.Drawing.Color TranColor = bitmap.GetPixel(0, 0);
- for (int y = 0; y < ImHeight; y++)
- {
- isTransRgn = true;
- for (int x = 0; x < ImWidth; x++)
- {
- curColor = bitmap.GetPixel(x, y);
- if (curColor == TranColor || x == ImWidth - 1)//如果遇到透明色或行尾
- {
- if (isTransRgn == false)//退出有效区
- {
- curRect.Width = x - curRect.X;
- g.AddRectangle(curRect);
- }
- }
- else//非透明色
- {
- if (isTransRgn == true)//进入有效区
- {
- curRect.X = x;
- curRect.Y = y;
- }
- }//if curColor
- isTransRgn = curColor == TranColor;
- }
- }
- return g;
- }
- public static void ClosThisForm(System.Windows.Forms.Control.ControlCollection controls)
- {
- for (int i = 0; i < controls.Count; i++)
- {
- System.Windows.Forms.Control control = controls[i];
- if (typeof(LYFZ.StandardInterface.IFormMain).IsAssignableFrom(control.GetType()))
- {
- LYFZ.StandardInterface.IFormMain iParentForm = (LYFZ.StandardInterface.IFormMain)control;
- iParentForm.ClosThisForm();
- controls.Remove(control);
- }
- if (control != null && control.IsDisposed)
- {
- control.Dispose();
- control = null;
- }
- }
- }
- /// <summary>
- /// 普通显示,向用户显示具有指定所有者的窗体
- /// </summary>
- /// <param name="classFullName">类全名</param>
- /// <returns></returns>
- public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowChildForm(string classFullName, string dllKey)
- {
- try
- {
- LYFZ.ComponentLibrary.BaseContentsFormMain frm = DynamicMenu.ShowChildForm(DynamicMenu.GetShowFormMain(classFullName, dllKey));
- return frm;
- }
- catch {
- return null;
- }
- }
- /// <summary>
- /// 普通显示,向用户显示具有指定所有者的窗体
- /// </summary>
- /// <param name="frm">要显示的窗体</param>
- /// <returns></returns>
- public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowChildForm(LYFZ.ComponentLibrary.BaseContentsFormMain frm)
- {
- if (frm != null)
- {
- try
- {
- frm.StartPosition = FormStartPosition.CenterScreen;
- frm.IsLoginValidation = true;
- frm.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
- frm.Show();
- //AddTestBtn(frm);
- }
- catch { }
- return frm;
- }
- else { return null; }
- }
- /// <summary>
- /// 将窗体显示为模式对话框,并将当前活动窗口设置为它的所有者。
- /// </summary>
- /// <param name="classFullName">要显示的窗体</param>
- /// <returns></returns>
- public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowDialogChildForm(string classFullName, string dllKey)
- {
- try
- {
- LYFZ.ComponentLibrary.BaseContentsFormMain frm = DynamicMenu.ShowDialogChildForm(DynamicMenu.GetShowFormMain(classFullName, dllKey));
- return frm;
- }
- catch { return null; }
- }
- /// <summary>
- /// 将窗体显示为模式对话框,并将当前活动窗口设置为它的所有者。
- /// </summary>
- /// <param name="frm">类全名</param>
- /// <returns></returns>
- public static LYFZ.ComponentLibrary.BaseContentsFormMain ShowDialogChildForm(LYFZ.ComponentLibrary.BaseContentsFormMain frm)
- {
- if (frm != null)
- {
- try
- {
- frm.IsLoginValidation = true;
- frm.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
- frm.ShowDialog();
- }
- catch { }
- return frm;
- }else{
- return null;
- }
- }
- /// <summary>
- /// 根据指定完全窗体类名获取窗体实例
- /// </summary>
- /// <param name="classFullName">类全名,指定类必须是继承至LYFZ.ComponentLibrary.BaseContentsFormMain</param>
- /// <param name="dllKey"></param>
- /// <returns></returns>
- public static LYFZ.ComponentLibrary.BaseContentsFormMain GetShowFormMain(string classFullName, string dllKey)
- {
- try
- {
- //构造参数
- string[] parameters = null;
- if (classFullName.Contains("?"))
- {
- string[] temps = classFullName.Split('?');
- classFullName = temps[0];
- if (temps.Length > 1)
- {
- parameters = temps[1].Split('|');
- }
- }
- object objForm = DynamicMenu.CreateInstance(classFullName, dllKey, parameters);
- if (objForm != null)
- {
- LYFZ.ComponentLibrary.BaseContentsFormMain frm = (LYFZ.ComponentLibrary.BaseContentsFormMain)objForm;
- frm.IsShowBtnFormSkin = false;
- frm.IsShowBtnFormMenu = false;
- frm.IsCustomScrollBar = true;
- AddTestBtn(frm);
- return frm;
- }
- else { return null; }
- }
- catch
- {
- try
- {
- LYFZ.ComponentLibrary.BaseContentsFormMain tryFrm = GetErrorFrm(classFullName);
- return tryFrm;
- }
- catch { return null; }
- }
- }
- public static LYFZ.ComponentLibrary.BaseContentsFormMain GetErrorFrm(string classFullName)
- {
- LYFZ.ComponentLibrary.BaseContentsFormMain tryFrm = new ComponentLibrary.BaseContentsFormMain();
- tryFrm.IsShowBtnFormSkin = false;
- tryFrm.IsShowBtnFormMenu = false;
- tryFrm.IsCustomScrollBar = true;
- tryFrm.Text = "窗体加载失败!";
- tryFrm.SetError("加载名为:" + classFullName + "的窗体失败!\r\n" + "请重启应用程序或联系管理员!");
- // tryFrm.SetError("抱歉!当前系统为演示版,所以部分功能不开放演示,请关注我们的正试版。");
- return tryFrm;
- }
- /// <summary>
- ///
- /// </summary>
- public static SortedList<string, Assembly> AssemblyList
- {
- get {
- if(assemblyList.Count<=0){
- DynamicMenu.RefreshAssemblyList();
- }
- return DynamicMenu.assemblyList; }
- set { DynamicMenu.assemblyList = value; }
- }
- /// <summary>
- /// 刷新Dll文件导入
- /// </summary>
- /// <returns></returns>
- public static SortedList<string, Assembly> RefreshAssemblyList()
- {
- LYFZ.BLL.BLL_SystemToolsMenu bllDllFile = new BLL.BLL_SystemToolsMenu(false);
- List<LYFZ.Model.Model_SystemToolsMenu.DllFile> dllList = bllDllFile.GetImportDllList();
- DynamicMenu.assemblyList.Clear();
- foreach (LYFZ.Model.Model_SystemToolsMenu.DllFile dllModel in dllList)
- {
- Assembly assembly=Assembly.LoadFile(LYFZ.WinAPI.CustomPublicMethod.BasePath+"\\"+dllModel.FileName);
- DynamicMenu.assemblyList.Add(dllModel.Key, assembly);
- }
- return DynamicMenu.assemblyList;
- }
- /// <summary>
- /// 使用与指定参数匹配程度最高的构造函数创建指定类型的实例。
- /// </summary>
- /// <param name="classFullName">类全名</param>
- /// <param name="args">构造参数数组,与要调用构造函数的参数数量、顺序和类型匹配的参数数组。如果 args 为空数组或 null,则调用不带任何参数的构造函数(默认构造函数)。</param>
- /// <param name="dllKey"></param>
- /// <returns></returns>
- public static object CreateInstance(string classFullName,string dllKey, params object[] args)
- {
- try
- {
- System.Threading.Thread.Sleep(1);
- Type type = null;
- try
- {
- Assembly ass = AssemblyList[dllKey]; //加载dll文件
- type = ass.GetType(classFullName);
- }
- catch
- {
- type = Type.GetType(classFullName);
- }
- object obj = Activator.CreateInstance(type, args);
- return obj;
- }
- catch {
- return null;
- }
- }
-
- /// <summary>
- /// 执行指定实例的方法
- /// </summary>
- /// <param name="instance">实例对象</param>
- /// <param name="methodName">方法名</param>
- /// <param name="parameters">参数数组</param>
- /// <returns></returns>
- public static object InvokeMethod(object instance, string methodName, params object[] parameters)
- {
- try
- {
- //parameters 为 object[] obj = new object[2] { "我是反射方法", 9 };
- Type type = instance.GetType();
- object obj = instance;
- System.Reflection.MethodInfo mi = type.GetMethod(methodName);
-
- try
- {
- return mi.Invoke(obj, parameters);
- }
- catch
- {
- return mi.Invoke(obj, null);
- }
-
- }
- catch { return null; }
- }
- /// <summary>
- /// 设置实例对象指定属性的值
- /// </summary>
- /// <param name="instance">实例对象</param>
- /// <param name="propertyName">属性名</param>
- /// <param name="value">值</param>
- public static void SetPropertyValue(object instance, string propertyName,object value)
- {
- LYFZ.WinAPI.CustomPublicMethod.SetPropertyValue(instance, propertyName, value);
- }
- /// <summary>
- /// 获取实例对象指定属性的值
- /// </summary>
- /// <param name="instance">实例对象</param>
- /// <param name="propertyName">属性名</param>
- /// <returns></returns>
- public static object GetPropertyValue(object instance, string propertyName)
- {
- return LYFZ.WinAPI.CustomPublicMethod.GetPropertyValue(instance,propertyName);
- }
- /// <summary>
- /// 获取实例对象指定属性
- /// </summary>
- /// <param name="instance">实例对象</param>
- /// <param name="propertyName">属性名</param>
- /// <returns></returns>
- public static System.Reflection.PropertyInfo GetProperty(object instance, string propertyName)
- {
- Type type = instance.GetType();
- object obj = instance;
- System.Reflection.PropertyInfo pi = type.GetProperty(propertyName);
-
- return pi;
- }
- #region 系统菜单和工具按钮单击事件执行方法
- /// <summary>
- /// 已显示过的所有窗体集合
- /// </summary>
- private static SortedList<string, LYFZ.ComponentLibrary.BaseContentsFormMain> sFormList = new SortedList<string, ComponentLibrary.BaseContentsFormMain>();
- /// <summary>
- /// 从SortedList集合中获取已显示过的所有窗体
- /// </summary>
- /// <param name="key"></param>
- /// <returns></returns>
- public static LYFZ.ComponentLibrary.BaseContentsFormMain GetSortedListInForm(string key)
- {
- try
- {
- LYFZ.ComponentLibrary.BaseContentsFormMain frm = sFormList[key];
- if (frm.IsDisposed)
- {
- frm = null;
- sFormList.Remove(key);
- }
- return frm;
- }
- catch {
- sFormList.Clear();
- return null;
- }
- }
-
- /// <summary>
- /// 处理普通显示模式时的窗体方法
- /// </summary>
- /// <param name="item"></param>
- /// <param name="iFrm"></param>
- public static void ProcessinShowForm(LYFZ.Model.Model_SystemToolsMenu.Item item, LYFZ.StandardInterface.IToolMenuClick iFrm)
- {
- LYFZ.ComponentLibrary.BaseContentsFormMain frm=DynamicMenu.GetSortedListInForm(item.KeyName);
- if (frm != null)
- {
- DynamicMenu.ShowChildForm(frm);
- }
- else {
- sFormList.Add(item.KeyName, DynamicMenu.ShowChildForm(item.ClassFullName, item.DllFileKey));
- }
- }
- /// <summary>
- /// 系统菜单按钮单击事件执行方法
- /// </summary>
- /// <param name="menuItem"></param>
- /// <param name="frm"></param>
- public static void MenuItemClickProcessingMethod(object sender, EventArgs e, LYFZ.StandardInterface.IToolMenuClick iFrm)
- {
- System.GC.Collect();
- ToolStripMenuItem menuItem = (ToolStripMenuItem)sender;
- LYFZ.Model.Model_SystemToolsMenu.Item item = (LYFZ.Model.Model_SystemToolsMenu.Item)menuItem.Tag;
- if (item.KeyName.ToLower().Contains("ExitApplication".ToLower()))
- {
- iFrm.ExitApplication();
- return;
- }
- switch (item.OpenMode.ToLower())
- {
- case "show":
- if (iFrm != null)
- iFrm.SetWindowState(FormWindowState.Maximized);
- DynamicMenu.ProcessinShowForm(item, iFrm);
- break;
- case "showdialog":
- if (iFrm != null)
- iFrm.SetWindowState(FormWindowState.Maximized);
- if (iFrm.FormName == "frmMainDropzone")
- DynamicMenu.ProcessinShowForm(item, iFrm);
- else
- DynamicMenu.ShowDialogChildForm(item.ClassFullName, item.DllFileKey);
- break;
- case "showembedded":
- if (iFrm != null)
- iFrm.ShowChildForm(item.ClassFullName, item.DllFileKey);
- break;
- case "run":
- DynamicMenu.RunStart(item.ClassFullName);
- break;
- case "setshowtoolsdescription":
- bool isShowToolsDescriptio = (bool)DynamicMenu.InvokeMethod(DynamicMenu.CreateInstance(item.ClassFullName, item.DllFileKey, null), item.OpenMode, new object[] { menuItem });
- if (isShowToolsDescriptio) iFrm.RefreshTools();
- break;
- case "setinterfaceselect":
- SwitchedForm(iFrm, DynamicMenu.InvokeMethod(DynamicMenu.CreateInstance(item.ClassFullName, item.DllFileKey, null), item.OpenMode, new object[] { menuItem }).ToString());
- break;
- case "switchuser":
- if (iFrm != null)
- iFrm.ShowLogin(null);
- break;
- default:
- try
- {
- DynamicMenu.InvokeMethod(DynamicMenu.CreateInstance(item.ClassFullName, item.DllFileKey, null), item.OpenMode, new object[] { menuItem }).ToString();
- }
- catch { }
- break;
- }
- }
- /// <summary>
- /// 系统工具栏按钮单击事件执行方法
- /// </summary>
- /// <param name="menuItem"></param>
- /// <param name="frm"></param>
- public static void ToolsClickProcessingMethod(object sender, LYFZ.StandardInterface.IToolMenuClick iFrm)
- {
- System.GC.Collect();
- try
- {
- LYFZ.Model.Model_SystemToolsMenu.Item item = (LYFZ.Model.Model_SystemToolsMenu.Item)sender;
- if (item.ClassFullName != "" && item.ClassFullName.ToLower() != "null")
- {
- switch (item.OpenMode.ToLower())
- {
- case "show":
- if (iFrm!=null)
- iFrm.SetWindowState(FormWindowState.Maximized);
- DynamicMenu.ProcessinShowForm(item, iFrm);
- break;
- case "showdialog":
- if (iFrm != null)
- iFrm.SetWindowState(FormWindowState.Maximized);
- if (iFrm.FormName == "frmMainDropzone")
- DynamicMenu.ProcessinShowForm(item, iFrm);
- else
- DynamicMenu.ShowDialogChildForm(item.ClassFullName, item.DllFileKey);
- break;
- case "showembedded":
- if (iFrm != null)
- iFrm.ShowChildForm(item.ClassFullName, item.DllFileKey);
- break;
- case "run":
- DynamicMenu.RunStart(item.ClassFullName);
- break;
- default:
- try
- {
- DynamicMenu.InvokeMethod(DynamicMenu.CreateInstance(item.ClassFullName, item.DllFileKey, null), item.OpenMode, null).ToString();
- }
- catch { }
- break;
- }
- }
- }
- catch { }
- }
-
- #endregion
- /// <summary>
- /// 切换窗体
- /// </summary>
- /// <param name="formName"></param>
- public static void SwitchedForm(LYFZ.StandardInterface.IToolMenuClick iFrm,string formName)
- {
- if (iFrm!=null)
- switch (iFrm.FormName)
- {
- case "frmClassicMain":
- case "frmFashionMain":
- ShowThisMainForm(iFrm, formName);
- break;
- case "frmMainDropzone":
- if (frmMainDropzone.thisOpenShowClassicMain != null)
- {
- if (!frmMainDropzone.thisOpenShowClassicMain.IsDisposed)
- frmMainDropzone.thisOpenShowClassicMain.Close();
- }
- if (frmMainDropzone.thisOpenShowFashionMain != null)
- {
- if (!frmMainDropzone.thisOpenShowFashionMain.IsDisposed)
- {
- frmMainDropzone.thisOpenShowFashionMain.IsSwitchForms = true;
- frmMainDropzone.thisOpenShowFashionMain.Close();
- }
- }
- ShowThisMainForm(null, formName);
- break;
- default: break;
- }
- }
- /// <summary>
- /// 显示当前选的主窗体
- /// </summary>
- /// <param name="iFrm"></param>
- /// <param name="formName"></param>
- public static void ShowThisMainForm(LYFZ.StandardInterface.IToolMenuClick iFrm, string formName)
- {
- if (formName != "")
- {
- if(iFrm!=null)
- iFrm.CloseForm();
- switch (formName)
- {
- case "frmClassicMain":
- DynamicMenu.OpenShowClassicMain();
- break;
- case "frmFashionMain":
- DynamicMenu.OpenShowFashionMain();
- break;
- default: break;
- }
- }
- }
- /// <summary>
- /// 向显示当前主窗体添加显示子窗体
- /// </summary>
- /// <param name="iForm"></param>
- public static void AddChlidFormToMainForm(LYFZ.StandardInterface.IToolMenuClick iForm, string classFullName = null, string dllKey = null)
- {
- if (classFullName != null && dllKey != null)
- {
- iForm.ShowChildForm(classFullName, dllKey);
- }
- else {
- iForm.ShowChildForm("LYFZ.Software.PhotoStudio.frmWelcomeForm", "SPS");
- }
- }
- /// <summary>
- /// 设置经典窗体最大化最小化
- /// </summary>
- /// <param name="classFullName"></param>
- /// <param name="dllKey"></param>
- public static void SetWindowStateClassicMain(System.Windows.Forms.FormWindowState wState)
- {
- try
- {
- Assembly ass = Assembly.Load("LYFZ.Software.PhotoStudio"); //加载dll文件
- Type type = ass.GetType("LYFZ.Software.PhotoStudio.frmClassicMain");
- object obj = Activator.CreateInstance(type, null);
- if (frmMainDropzone.thisOpenShowClassicMain == null || frmMainDropzone.thisOpenShowClassicMain.IsDisposed)
- {
- LYFZ.Software.UI.frmClassicMain ClassicMain = (LYFZ.Software.UI.frmClassicMain)obj;
- ClassicMain.IsShowBtnFormMenu = true;
- frmMainDropzone.thisOpenShowClassicMain = ClassicMain;
- ClassicMain.Show();
- AddChlidFormToMainForm(ClassicMain, null, null);
- frmMainDropzone.thisOpenShowClassicMain.SetWindowState(System.Windows.Forms.FormWindowState.Maximized);
- }
- else
- {
- if (!frmMainDropzone.thisOpenShowFashionMain.Visible)
- frmMainDropzone.thisOpenShowClassicMain.Show();
- frmMainDropzone.thisOpenShowClassicMain.SetWindowState(System.Windows.Forms.FormWindowState.Maximized);
- }
- }
- catch
- {
- }
- }
- /// <summary>
- /// 设置时尚体最大化最小化
- /// </summary>
- /// <param name="classFullName"></param>
- /// <param name="dllKey"></param>
- public static void SetWindowStateFashionMain(System.Windows.Forms.FormWindowState wState)
- {
- try
- {
- Assembly ass = Assembly.Load("LYFZ.Software.PhotoStudio"); //加载dll文件
- Type type = ass.GetType("LYFZ.Software.PhotoStudio.frmFashionMain");
- object obj = Activator.CreateInstance(type, null);
- if (frmMainDropzone.thisOpenShowFashionMain == null || frmMainDropzone.thisOpenShowFashionMain.IsDisposed)
- {
- LYFZ.Software.UI.frmFashionMain FashionMain = (LYFZ.Software.UI.frmFashionMain)obj;
- frmMainDropzone.thisOpenShowFashionMain = FashionMain;
- FashionMain.Show();
- AddChlidFormToMainForm(FashionMain, null, null);
- frmMainDropzone.thisOpenShowClassicMain.SetWindowState(System.Windows.Forms.FormWindowState.Maximized);
- }
- else
- { if(!frmMainDropzone.thisOpenShowFashionMain.Visible)
- frmMainDropzone.thisOpenShowFashionMain.Show();
- frmMainDropzone.thisOpenShowClassicMain.SetWindowState(System.Windows.Forms.FormWindowState.Maximized);
- }
- }
- catch
- {
- }
- }
- /// <summary>
- /// 打开显示经典窗体
- /// </summary>
- /// <param name="classFullName"></param>
- /// <param name="dllKey"></param>
- public static void OpenShowClassicMain(string classFullName = null, string dllKey = null)
- {
- try
- {
- Assembly ass = Assembly.Load("LYFZ.Software.PhotoStudio"); //加载dll文件
- Type type = ass.GetType("LYFZ.Software.PhotoStudio.frmClassicMain");
- object obj = Activator.CreateInstance(type, null);
- if (frmMainDropzone.thisOpenShowClassicMain == null || frmMainDropzone.thisOpenShowClassicMain.IsDisposed)
- {
- LYFZ.Software.UI.frmClassicMain ClassicMain = (LYFZ.Software.UI.frmClassicMain)obj;
- ClassicMain.IsShowBtnFormMenu = true;
- frmMainDropzone.thisOpenShowClassicMain = ClassicMain;
- ClassicMain.Show();
- //frmMainDropzone.thisOpenShowClassicMain.SetWindowState(System.Windows.Forms.FormWindowState.Maximized);
- AddChlidFormToMainForm(ClassicMain, classFullName, dllKey);
- }
- else
- {
- frmMainDropzone.thisOpenShowClassicMain.Show();
- // frmMainDropzone.thisOpenShowClassicMain.SetWindowState(System.Windows.Forms.FormWindowState.Maximized);
- AddChlidFormToMainForm(frmMainDropzone.thisOpenShowClassicMain, classFullName, dllKey);
- }
- }
- catch
- {
- }
-
- }
- /// <summary>
- /// 打开显示时尚窗体
- /// </summary>
- /// <param name="classFullName"></param>
- /// <param name="dllKey"></param>
- public static void OpenShowFashionMain(string classFullName=null, string dllKey=null)
- {
- try
- {
- Assembly ass = Assembly.Load("LYFZ.Software.PhotoStudio"); //加载dll文件
- Type type = ass.GetType("LYFZ.Software.PhotoStudio.frmFashionMain");
- object obj = Activator.CreateInstance(type, null);
- if (frmMainDropzone.thisOpenShowFashionMain == null || frmMainDropzone.thisOpenShowFashionMain.IsDisposed)
- {
- LYFZ.Software.UI.frmFashionMain FashionMain = (LYFZ.Software.UI.frmFashionMain)obj;
- frmMainDropzone.thisOpenShowFashionMain = FashionMain;
- FashionMain.Show();
- AddChlidFormToMainForm(FashionMain, classFullName, dllKey);
- }
- else
- {
- frmMainDropzone.thisOpenShowFashionMain.Show();
- AddChlidFormToMainForm(frmMainDropzone.thisOpenShowFashionMain, classFullName, dllKey);
- }
- }
- catch
- {
- }
- }
- /// <summary>
- /// 运行外部应用程序
- /// </summary>
- /// <param name="path"></param>
- public static void RunStart(string path)
- {
- //if (System.IO.File.Exists(path))
- //{
- // System.Diagnostics.Process.Start(path);
- //}
- //else if (System.IO.File.Exists(LYFZ.WinAPI.CustomPublicMethod.BasePath+path))
- //{
- // System.Diagnostics.Process.Start(LYFZ.WinAPI.CustomPublicMethod.BasePath + path);
- //}
- if (path.Contains("|") && !path.ToLower().Contains("http://"))
- {
- string[] retValues = path.Split('|');
- if (retValues.Length > 1)
- {
- LYFZ.WinAPI.CustomPublicMethod.RunStart(retValues[0], retValues[1]);
- }
- else {
- LYFZ.WinAPI.CustomPublicMethod.RunStart(retValues[0]);
- }
- }
- else {
- LYFZ.WinAPI.CustomPublicMethod.RunStart(path);
- }
-
- }
- /// <summary>
- /// 设置是否显示工具按钮说明文
- /// </summary>
- public static bool SetShowToolsDescription(ToolStripMenuItem menuItem)
- {
- menuItem.Checked = !menuItem.Checked;
- return new LYFZ.BLL.BLL_Config().Update_IsShowToolsDescription(menuItem.Checked);
-
- }
- /// <summary>
- /// 设置界面选择
- /// </summary>
- /// <param name="menuItem"></param>
- public static string SetInterfaceSelect(ToolStripMenuItem menuItem)
- {
- string tempInterface = "";
- try
- {
- if (!menuItem.Checked)
- {
- ToolStripMenuItem parentMenuItem = (ToolStripMenuItem)menuItem.OwnerItem;
- string thisInterface = menuItem.Name.Split('_')[0];
- foreach (ToolStripMenuItem item in parentMenuItem.DropDownItems)
- {
- item.Checked = false;
- }
- menuItem.Checked = true;
- new LYFZ.BLL.BLL_Config().UpdateInterfaceSelect(thisInterface);
- tempInterface = thisInterface;
- }
-
- }
- catch {
-
- }
- return tempInterface;
- }
- private static string _IsToosClickOpen = null;
- /// <summary>
- /// 获取工具栏按钮是采用单击事件还是双击事件
- /// </summary>
- public static bool IsToosClickOpen
- {
- get {
- if (DynamicMenu._IsToosClickOpen == null)
- {
- LYFZ.BLL.BLL_Config bllconfig = new BLL.BLL_Config();
- DynamicMenu._IsToosClickOpen = bllconfig.GetIsToosClick().ToString();
- }
- return Convert.ToBoolean(_IsToosClickOpen);
- }
- }
- /// <summary>
- /// 工功列表类型
- /// </summary>
- public enum ToolsChatListType
- {
- Dropzone,
- MainFrm
- }
- /// <summary>
- /// 设置工功列表颜色
- /// </summary>
- /// <param name="toolsChatListControl"></param>
- public static void SetToolsChatListControl(LYFZ.ComponentLibrary.ChatListControl.ToolsChatListControl toolsChatListControl,ToolsChatListType type= ToolsChatListType.MainFrm)
- {
- switch(type){
- case ToolsChatListType.MainFrm:
- toolsChatListControl.BackColor = LYFZ.ComponentLibrary.GetUIResources.ScreenMainFunctionListBgColor;
- toolsChatListControl.ItemColor = LYFZ.ComponentLibrary.GetUIResources.ScreenMainFunctionListItmeBgColor;
- toolsChatListControl.ItemMouseOnColor = LYFZ.ComponentLibrary.GetUIResources.ScreenMainFunctionListItemMouseMoveBgColor;
- toolsChatListControl.ItmeDfTextColor = LYFZ.ComponentLibrary.GetUIResources.ScreenMainFunctionListTextColor;
- toolsChatListControl.ItmeSelectTextColor = LYFZ.ComponentLibrary.GetUIResources.ScreenMainFunctionListSelectTextColor;
- toolsChatListControl.ArrowColor = LYFZ.ComponentLibrary.GetUIResources.ScreenMainFunctionListArrowColor;
- toolsChatListControl.SubItemMouseOnColor = LYFZ.ComponentLibrary.GetUIResources.ScreenMainFunctionListItemMouseMoveBgColor;
- toolsChatListControl.SubItemColor = LYFZ.ComponentLibrary.GetUIResources.ScreenSubFunctionListItmeBgColor;
- toolsChatListControl.SubItemSelectColor = LYFZ.ComponentLibrary.GetUIResources.ScreenSubFunctionListSelectColor;
- toolsChatListControl.SubItmeDfTextColor = LYFZ.ComponentLibrary.GetUIResources.ScreenSubFunctionListTextColor;
- toolsChatListControl.SubItmeSelectTextColor = LYFZ.ComponentLibrary.GetUIResources.ScreenSubFunctionListSelectTextColor;
- toolsChatListControl.SubItemSeparateLineColor = LYFZ.ComponentLibrary.GetUIResources.ScreenSubItemSeparateLineColor;
- break;
- case ToolsChatListType.Dropzone:
- toolsChatListControl.BackColor = LYFZ.ComponentLibrary.GetUIResources.MainFunctionListBgColor;
- toolsChatListControl.ItemColor = LYFZ.ComponentLibrary.GetUIResources.MainFunctionListItmeBgColor;
- toolsChatListControl.ItemMouseOnColor = LYFZ.ComponentLibrary.GetUIResources.MainFunctionListItemMouseMoveBgColor;
- toolsChatListControl.ItmeDfTextColor = LYFZ.ComponentLibrary.GetUIResources.MainFunctionListTextColor;
- toolsChatListControl.ItmeSelectTextColor = LYFZ.ComponentLibrary.GetUIResources.MainFunctionListSelectTextColor;
- toolsChatListControl.ArrowColor = LYFZ.ComponentLibrary.GetUIResources.MainFunctionListArrowColor;
- toolsChatListControl.SubItemMouseOnColor = LYFZ.ComponentLibrary.GetUIResources.MainFunctionListItemMouseMoveBgColor;
- toolsChatListControl.SubItemColor = LYFZ.ComponentLibrary.GetUIResources.SubFunctionListItmeBgColor;
- toolsChatListControl.SubItemSelectColor = LYFZ.ComponentLibrary.GetUIResources.SubFunctionListSelectColor;
- toolsChatListControl.SubItmeDfTextColor = LYFZ.ComponentLibrary.GetUIResources.SubFunctionListTextColor;
- toolsChatListControl.SubItmeSelectTextColor = LYFZ.ComponentLibrary.GetUIResources.SubFunctionListSelectTextColor;
- toolsChatListControl.SubItemSeparateLineColor = LYFZ.ComponentLibrary.GetUIResources.SubItemSeparateLineColor;
- break;
- }
- }
- */
- #endregion
- }
- }
|