using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace LYFZ.Software.UI { public partial class frmClassicMain : BaseFormMain, LYFZ.StandardInterface.IToolMenuClick, LYFZ.ComponentLibrary.Interface.IClassicMain { LYFZ.ComponentLibrary.BaseContentsFormMain thisChildForm = null; LYFZ.BLL.BLL_SystemToolsMenu bllToolsMenu = new BLL.BLL_SystemToolsMenu(false); public frmClassicMain() { this.WindowState = FormWindowState.Maximized; InitializeComponent(); this.IsShowIcon = false; this.IsShowTitle = false; DynamicMenu.SetToolsChatListControl(toolsChatListControl1); try { InitializationQuickTools(); SetGlassButtonLocation(); // LYFZ.Model.Model_SystemToolsMenu.DefaultWelcomeForm dfWelcomeForm = bllToolsMenu.GetDefaultWelcomeForm(); // thisChildForm = DynamicMenu.ShowEmbeddedClassicChildForm(dfWelcomeForm.ClassFullName, this.spcExMainContainer.Panel2.Controls, dfWelcomeForm.DllFileKey); if (DynamicMenu.IsToosClickOpen) { this.toolsChatListControl1.ClickSubItem += new ComponentLibrary.ChatListControl.ChatListBox.ChatListEventHandler(toolsChatListControl1_ClickSubItem); } else { this.toolsChatListControl1.DoubleClickSubItem+=new ComponentLibrary.ChatListControl.ChatListBox.ChatListEventHandler(toolsChatListControl1_DoubleClickSubItem); } } catch { } } protected List GlassButtonList = new List(); /// /// 当窗体大小变化时重新排列工具位置 /// private void SetGlassButtonLocation() { try { int OffsetDistance = (this.Width - 980) / GlassButtonList.Count; if (OffsetDistance > 60) { OffsetDistance = 60; } if (this.Width > 980) { OffsetDistance += 75; } else { OffsetDistance = 75; } for (int i = 1; i < GlassButtonList.Count; i++) { GlassButtonList[i].Location = new Point(GlassButtonList[0].Location.X + i * OffsetDistance, GlassButtonList[0].Location.Y); } } catch { } } /// /// 窗体大小变化事件 /// /// /// private void frmClassicMain_Resize(object sender, EventArgs e) { SetGlassButtonLocation(); } /// /// 在工作区显示子窗体 /// /// 要显示的子窗体类名 public void ShowChildForm(string classFullName, string dllKey) { try { System.GC.Collect(); if (LYFZ.BLL.BLL_ErpUser.WhetherTimesOut) { this.spcExMainContainer.Panel2.Enabled = false; ShowLogin(); ShowChildForm(classFullName, dllKey); } else { this.spcExMainContainer.Panel2.Enabled = true; thisChildForm = DynamicMenu.ShowEmbeddedClassicChildForm(classFullName, this.spcExMainContainer.Panel2.Controls, dllKey); } if (this.WindowState != FormWindowState.Maximized) { this.WindowState = FormWindowState.Maximized; } } catch { } } /// /// 设置窗体状态 /// /// public void SetWindowState(System.Windows.Forms.FormWindowState wState) { if (this.WindowState != wState) { this.WindowState = wState; } } /// /// 显示登录窗体 /// public virtual void ShowLogin(Form subfrm = null) { } /// /// 获取窗体名 /// public string FormName { get { return this.Name; } } /// /// 关闭窗体。 /// public void CloseForm() { this.Close(); } /// /// 退出程序 /// public virtual void ExitApplication() { } /// /// 刷新工具栏按钮 /// public void RefreshTools() { this.toolsChatListControl1.RefreshTools(); } /// /// 在本窗体中显示指定窗体 /// /// 指定窗体的类的完全名称 /// 指定窗体类所在的dll Key /// 窗体显示方式 public void ShowForm(string classFullName, string dllKey, string openMode) { LYFZ.Model.Model_SystemToolsMenu.Item item = new Model.Model_SystemToolsMenu.Item(); item.KeyName = "indexFrm"; item.DllFileKey = dllKey; item.OpenMode = openMode; item.ClassFullName = classFullName; DynamicMenu.ToolsClickProcessingMethod(item, this); } /// /// 设置菜单项单击事 /// /// protected override void SetMenuItem_Click(ToolStripMenuItem menuItem) { //请实现功能 LYFZ.Model.Model_SystemToolsMenu.Item item = (LYFZ.Model.Model_SystemToolsMenu.Item)menuItem.Tag; if(!item.IsChildMenu && item.ClassFullName!="" && item.ClassFullName.ToLower()!="null") menuItem.Click += new EventHandler(FrmClasscMainMenuItem_Click); } /// /// 经典窗体系统菜单项单击事件 /// /// /// public void FrmClasscMainMenuItem_Click(object sender, EventArgs e) { DynamicMenu.MenuItemClickProcessingMethod(sender, e, this); } /// /// 初始化快捷工具栏 /// private void InitializationQuickTools() { try { List QuickToolsItems = bllToolsMenu.GetSystemQuickTools(); int buttonX = 185; int buttonY = 25; int tempCount = 0; foreach (LYFZ.Model.Model_SystemToolsMenu.Item item in QuickToolsItems) { if (item.Text == "上传队列" && LYFZSS.SystemSpecterPossessed.ISystemSpecterPossessed.GetMySystemSpecter != LYFZSS.SystemSpecterType.SST_E) { break; } if (!item.Disable&&LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.Model.Model_UserRights.GetQuickToolsPet(),item.KeyName)) { LYFZ.ComponentLibrary.GlassButton gButton = new ComponentLibrary.GlassButton(); gButton.Location = new Point(buttonX + (80 * tempCount), buttonY); gButton.Text = item.Text; try { gButton.Bitmap = new Bitmap(LYFZ.WinAPI.CustomPublicMethod.GetMenuItemImage(item.Icon)); } catch { } gButton.Name = item.KeyName; gButton.Tag = item; // gButton.Enabled = false; SetQuickTools_Click(gButton); this.GlassButtonList.Add(gButton); this.Controls.Add(gButton); tempCount++; } } } catch (Exception ex){ MessageBoxCustom.Show("初始化快捷工具栏:"+ex.Message); } } /// /// 设置快捷工具栏单击事件 要在派生窗体中重写实现功能 /// /// protected virtual void SetQuickTools_Click(LYFZ.ComponentLibrary.GlassButton glassButton) { //请在派生窗体中重写实现功能 glassButton.Click += new EventHandler(glassButton_Click); } void glassButton_Click(object sender, EventArgs e) { LYFZ.ComponentLibrary.GlassButton glassButton = (LYFZ.ComponentLibrary.GlassButton)sender; DynamicMenu.ToolsClickProcessingMethod(glassButton.Tag, this); } private void toolsChatListControl1_DoubleClickSubItem(object sender, ComponentLibrary.ChatListControl.ChatListEventArgs e) { LYFZ.ComponentLibrary.ChatListControl.ChatListSubItem selectSubItem = e.SelectSubItem; if (selectSubItem.Status != LYFZ.ComponentLibrary.ChatListControl.ChatListSubItem.UserStatus.OffLine) DynamicMenu.ToolsClickProcessingMethod(selectSubItem.Tag, this); } private void toolsChatListControl1_ClickSubItem(object sender, ComponentLibrary.ChatListControl.ChatListEventArgs e) { LYFZ.ComponentLibrary.ChatListControl.ChatListSubItem selectSubItem = e.SelectSubItem; if (selectSubItem.Status != LYFZ.ComponentLibrary.ChatListControl.ChatListSubItem.UserStatus.OffLine) DynamicMenu.ToolsClickProcessingMethod(selectSubItem.Tag, this); } } }