123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- 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<LYFZ.ComponentLibrary.GlassButton> GlassButtonList = new List<ComponentLibrary.GlassButton>();
- /// <summary>
- /// 当窗体大小变化时重新排列工具位置
- /// </summary>
- 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 { }
- }
- /// <summary>
- /// 窗体大小变化事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void frmClassicMain_Resize(object sender, EventArgs e)
- {
- SetGlassButtonLocation();
- }
- /// <summary>
- /// 在工作区显示子窗体
- /// </summary>
- /// <param name="classFullName">要显示的子窗体类名</param>
- 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 { }
- }
- /// <summary>
- /// 设置窗体状态
- /// </summary>
- /// <param name="wState"></param>
- public void SetWindowState(System.Windows.Forms.FormWindowState wState)
- {
- if (this.WindowState != wState)
- {
- this.WindowState = wState;
- }
- }
- /// <summary>
- /// 显示登录窗体
- /// </summary>
- public virtual void ShowLogin(Form subfrm = null)
- {
-
- }
- /// <summary>
- /// 获取窗体名
- /// </summary>
- public string FormName {
- get { return this.Name; }
- }
- /// <summary>
- /// 关闭窗体。
- /// </summary>
- public void CloseForm()
- {
- this.Close();
- }
- /// <summary>
- /// 退出程序
- /// </summary>
- public virtual void ExitApplication()
- {
-
- }
-
- /// <summary>
- /// 刷新工具栏按钮
- /// </summary>
- public void RefreshTools() {
- this.toolsChatListControl1.RefreshTools();
- }
- /// <summary>
- /// 在本窗体中显示指定窗体
- /// </summary>
- /// <param name="classFullName">指定窗体的类的完全名称</param>
- /// <param name="dllKey">指定窗体类所在的dll Key</param>
- /// <param name="openMode">窗体显示方式</param>
- 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);
- }
- /// <summary>
- /// 设置菜单项单击事
- /// </summary>
- /// <param name="menuItem"></param>
- 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);
- }
-
- /// <summary>
- /// 经典窗体系统菜单项单击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- public void FrmClasscMainMenuItem_Click(object sender, EventArgs e)
- {
- DynamicMenu.MenuItemClickProcessingMethod(sender, e, this);
-
- }
- /// <summary>
- /// 初始化快捷工具栏
- /// </summary>
- private void InitializationQuickTools()
- {
- try
- {
- List<LYFZ.Model.Model_SystemToolsMenu.Item> 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);
- }
-
-
- }
- /// <summary>
- /// 设置快捷工具栏单击事件 要在派生窗体中重写实现功能
- /// </summary>
- /// <param name="menuItem"></param>
- 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);
- }
-
- }
-
- }
|