frmMainDropzone.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.UI
  10. {
  11. public partial class frmMainDropzone : BaseFormMain,LYFZ.StandardInterface.IToolMenuClick
  12. {
  13. public frmMainDropzone()
  14. {
  15. InitializeComponent();
  16. this.Load+=frmMainDropzone_Load;
  17. }
  18. void frmMainDropzone_Load(object sender, EventArgs e)
  19. {
  20. DynamicMenu.SetToolsChatListControl(toolsChatListControl1, DynamicMenu.ToolsChatListType.Dropzone);
  21. try
  22. {
  23. // this.stoolsTopList.Visible = false;
  24. this.stoolsTopList.ItemClicked += stoolsTopList_ItemClicked;
  25. this.TopMost = true;
  26. this.Resize += new EventHandler(frmMainDropzone_Resize);
  27. this.timHide.Tick += new EventHandler(timHide_Tick);
  28. this.lbExUserName.MouseDown += lbExUserName_MouseDown;
  29. this.labTime.MouseDown += labTime_MouseDown;
  30. //获取屏幕宽高
  31. SW = Screen.PrimaryScreen.Bounds.Width;
  32. SH = Screen.PrimaryScreen.Bounds.Height;
  33. this.Height = SH - 30;
  34. // this.IsCloseForm = false;
  35. this.IsMinimize = false;
  36. this.btnAppFormMinimize.Click += new EventHandler(OverridebtnAppFormMinimize_Click);
  37. if (DynamicMenu.IsToosClickOpen)
  38. {
  39. this.toolsChatListControl1.ClickSubItem += new ComponentLibrary.ChatListControl.ChatListBox.ChatListEventHandler(toolsChatListControl1_ClickSubItem);
  40. }
  41. else
  42. {
  43. this.toolsChatListControl1.DoubleClickSubItem += new ComponentLibrary.ChatListControl.ChatListBox.ChatListEventHandler(toolsChatListControl1_DoubleClickSubItem);
  44. }
  45. setIconImg(1);
  46. this.stoolsTopList.MouseEnter += stoolsTopList_MouseEnter;
  47. }
  48. catch { }
  49. }
  50. /// <summary>
  51. /// 刷新
  52. /// </summary>
  53. public void FRefreshDropzone() {
  54. try
  55. {
  56. if (LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.IsLoginAutoOpenIndex)
  57. {
  58. stoolsTopList_ItemClicked(null, new ToolStripItemClickedEventArgs(this.index));
  59. }
  60. this.stoolsTopList.TabIndex = 0;
  61. SetStoolsTopListRights();
  62. }
  63. catch { }
  64. }
  65. LYFZ.BLL.BLL_SystemToolsMenu bllMenu = new BLL.BLL_SystemToolsMenu(false);
  66. /// <summary>
  67. /// 设置小工具栏上的权限
  68. /// </summary>
  69. void SetStoolsTopListRights()
  70. {
  71. //LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.Model.Model_UserRights.GetQuickToolsPet(),item.KeyName)
  72. //LYFZ.Software.PhotoStudio.frmWelcomeForm
  73. List<LYFZ.Model.Model_SystemToolsMenu.Item> QuickToolsItems = bllMenu.GetSystemQuickTools();
  74. for (int i = 0; i < this.stoolsTopList.Items.Count; i++)
  75. {
  76. ToolStripItem tlsItem = this.stoolsTopList.Items[i];
  77. foreach (LYFZ.Model.Model_SystemToolsMenu.Item item in QuickToolsItems)
  78. {
  79. if (tlsItem.Tag != null && tlsItem.Tag.ToString().ToLower() == item.ClassFullName.ToLower())
  80. {
  81. tlsItem.Visible= LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.Model.Model_UserRights.GetQuickToolsPet(), item.KeyName);
  82. break;
  83. }
  84. }
  85. }
  86. }
  87. void stoolsTopList_MouseEnter(object sender, EventArgs e)
  88. {
  89. this.stoolsTopList.Focus();
  90. }
  91. void stoolsTopList_ItemClicked(object sender, ToolStripItemClickedEventArgs e)
  92. {
  93. LYFZ.Model.Model_SystemToolsMenu.Item item = new Model.Model_SystemToolsMenu.Item();
  94. item.KeyName = e.ClickedItem.Name;
  95. item.DllFileKey = "SUMB";
  96. item.OpenMode = "ShowEmbedded";
  97. item.ClassFullName = e.ClickedItem.Tag.ToString();
  98. if (e.ClickedItem.Name.ToLower() == "index")
  99. {
  100. item.DllFileKey = "SPS";
  101. }
  102. if (e.ClickedItem.Name.ToLower() == "cameracontrol")
  103. {
  104. item.OpenMode = "Show";
  105. }
  106. DynamicMenu.ToolsClickProcessingMethod(item, this);
  107. }
  108. void labTime_MouseDown(object sender, MouseEventArgs e)
  109. {
  110. if (e.Clicks == 1)
  111. FormMove();
  112. }
  113. void lbExUserName_MouseDown(object sender, MouseEventArgs e)
  114. {
  115. if (e.Clicks == 1)
  116. FormMove();
  117. }
  118. #region 托盘图标设置
  119. /// <summary>
  120. /// 设置托盘显示的图标
  121. /// </summary>
  122. /// <param name="index">图像列表中图片的索引</param>
  123. private void setIconImg(int index)
  124. {
  125. Image img = this.imgIcon.Images[index];
  126. Bitmap b = new Bitmap(img);
  127. Icon icon = Icon.FromHandle(b.GetHicon());
  128. this.ntiNotifyIcon.Icon = icon;
  129. }
  130. // public System.Windows.Forms.NotifyIcon NtiNotifyIcon {
  131. // get { return this.ntiNotifyIcon; }
  132. // }
  133. private void frmMainDropzone_FormClosed(object sender, FormClosedEventArgs e)
  134. {
  135. this.ntiNotifyIcon.Dispose();
  136. }
  137. private void frmMainDropzone_MouseLeave(object sender, EventArgs e)
  138. {
  139. this.timHide.Start();
  140. }
  141. private void ntiNotifyIcon_DoubleClick(object sender, EventArgs e)
  142. {
  143. SetShowMainForm();
  144. }
  145. private void tsmShowMainForm_Click(object sender, EventArgs e)
  146. {
  147. SetShowMainForm();
  148. }
  149. Point thisFormOldPoint = new Point();
  150. private void SetShowMainForm()
  151. {
  152. if (!this.Visible)
  153. {
  154. this.Location = thisFormOldPoint;
  155. }
  156. this.Show();
  157. this.WindowState = FormWindowState.Normal;
  158. if (this.Top <= 1)
  159. this.Top = 0;
  160. if (this.Left <= 1)
  161. this.Left = 0;
  162. if (this.Left >= Screen.PrimaryScreen.Bounds.Width - this.Width - 2)
  163. {
  164. this.Left = Screen.PrimaryScreen.Bounds.Width - this.Width - 1;
  165. }
  166. this.Activate();
  167. this.timHide.Stop();
  168. }
  169. protected virtual void tsmAbout_Click(object sender, EventArgs e)
  170. {
  171. System.Diagnostics.Process.Start("http://www.lyfz.net/about.asp?id=46");
  172. }
  173. protected virtual void tsmHelp_Click(object sender, EventArgs e)
  174. {
  175. System.Diagnostics.Process.Start("http://www.lyfz.net/");
  176. }
  177. public virtual void tsmExitApp_Click(object sender, EventArgs e)
  178. {
  179. }
  180. #endregion
  181. /// <summary>
  182. /// 点击最小化窗体时隐藏窗体
  183. /// </summary>
  184. /// <param name="sender"></param>
  185. /// <param name="e"></param>
  186. protected virtual void OverridebtnAppFormMinimize_Click(object sender, EventArgs e)
  187. {
  188. thisFormOldPoint = this.Location;
  189. this.WindowState = FormWindowState.Minimized;
  190. this.Hide();
  191. }
  192. /// <summary>
  193. /// 限制窗体最大宽度
  194. /// </summary>
  195. /// <param name="sender"></param>
  196. /// <param name="e"></param>
  197. void frmMainDropzone_Resize(object sender, EventArgs e)
  198. {
  199. if (this.Width >= 420)
  200. {
  201. this.Width = 420;
  202. }
  203. }
  204. /// <summary>
  205. /// 获取窗体名
  206. /// </summary>
  207. public string FormName
  208. {
  209. get { return this.Name; }
  210. }
  211. /// <summary>
  212. /// 关闭窗体。
  213. /// </summary>
  214. public void CloseForm()
  215. {
  216. this.Close();
  217. }
  218. /// <summary>
  219. /// 退出程序
  220. /// </summary>
  221. public void ExitApplication()
  222. {
  223. // frmLogin.ExitApplication();
  224. this.Close();
  225. }
  226. /// <summary>
  227. /// 刷新工具栏按钮
  228. /// </summary>
  229. public void RefreshTools()
  230. {
  231. this.toolsChatListControl1.RefreshTools();
  232. }
  233. /// <summary>
  234. /// 在本窗体中显示指定窗体
  235. /// </summary>
  236. /// <param name="classFullName">指定窗体的类的完全名称</param>
  237. /// <param name="dllKey">指定窗体类所在的dll Key</param>
  238. /// <param name="openMode">窗体显示方式</param>
  239. public void ShowForm(string classFullName, string dllKey, string openMode)
  240. {
  241. return;
  242. }
  243. /// <summary>
  244. /// 显示登录窗体
  245. /// </summary>
  246. public virtual void ShowLogin(Form subfrm = null)
  247. {
  248. }
  249. /// <summary>
  250. /// 保存当前正在打开显示的frmClassicMain主窗体
  251. /// </summary>
  252. public static LYFZ.Software.UI.frmClassicMain thisOpenShowClassicMain = null;
  253. /// <summary>
  254. /// 保存当前正在打开显示的frmFashionMain主窗体
  255. /// </summary>
  256. public static LYFZ.Software.UI.frmFashionMain thisOpenShowFashionMain = null;
  257. /// <summary>
  258. /// 显示相应子窗体
  259. /// </summary>
  260. /// <param name="classFullName">要显示的子窗体类名</param>
  261. /// <param name="dllKey"></param>
  262. public virtual void ShowChildForm(string classFullName, string dllKey)
  263. {
  264. string thisSelectMainForm = "";
  265. LYFZ.BLL.BLL_Config bllConfig = new BLL.BLL_Config();
  266. thisSelectMainForm = bllConfig.GetInterfaceSelect();
  267. switch (thisSelectMainForm)
  268. {
  269. case "frmClassicMain":
  270. DynamicMenu.OpenShowClassicMain(classFullName, dllKey);
  271. break;
  272. case "frmFashionMain":
  273. DynamicMenu.OpenShowFashionMain(classFullName, dllKey);
  274. break;
  275. }
  276. }
  277. /// <summary>
  278. /// 设置窗体状态
  279. /// </summary>
  280. /// <param name="wState"></param>
  281. public void SetWindowState(System.Windows.Forms.FormWindowState wState)
  282. {
  283. string thisSelectMainForm = "";
  284. LYFZ.BLL.BLL_Config bllConfig = new BLL.BLL_Config();
  285. thisSelectMainForm = bllConfig.GetInterfaceSelect();
  286. switch (thisSelectMainForm)
  287. {
  288. case "frmClassicMain":
  289. DynamicMenu.SetWindowStateClassicMain(System.Windows.Forms.FormWindowState.Maximized);
  290. break;
  291. case "frmFashionMain":
  292. DynamicMenu.SetWindowStateFashionMain(System.Windows.Forms.FormWindowState.Maximized);
  293. break;
  294. }
  295. }
  296. #region 菜单按钮单击事件
  297. /// <summary>
  298. /// 设置菜单项单击事
  299. /// </summary>
  300. /// <param name="menuItem"></param>
  301. protected override void SetMenuItem_Click(ToolStripMenuItem menuItem)
  302. {
  303. //请实现功能
  304. LYFZ.Model.Model_SystemToolsMenu.Item item = (LYFZ.Model.Model_SystemToolsMenu.Item)menuItem.Tag;
  305. if (!item.IsChildMenu && item.ClassFullName != "" && item.ClassFullName.ToLower() != "null")
  306. menuItem.Click += new EventHandler(FrmMainDropzoneMenuItem_Click);
  307. }
  308. /// <summary>
  309. /// 时尚窗体系统菜单项单击事件
  310. /// </summary>
  311. /// <param name="sender"></param>
  312. /// <param name="e"></param>
  313. public virtual void FrmMainDropzoneMenuItem_Click(object sender, EventArgs e)
  314. {
  315. DynamicMenu.MenuItemClickProcessingMethod(sender, e, this);
  316. }
  317. #endregion
  318. private void toolsChatListControl1_DoubleClickSubItem(object sender, ComponentLibrary.ChatListControl.ChatListEventArgs e)
  319. {
  320. LYFZ.ComponentLibrary.ChatListControl.ChatListSubItem selectSubItem = e.SelectSubItem;
  321. if (selectSubItem.Status != LYFZ.ComponentLibrary.ChatListControl.ChatListSubItem.UserStatus.OffLine)
  322. DynamicMenu.ToolsClickProcessingMethod(selectSubItem.Tag, this);
  323. }
  324. private void toolsChatListControl1_ClickSubItem(object sender, ComponentLibrary.ChatListControl.ChatListEventArgs e)
  325. {
  326. LYFZ.ComponentLibrary.ChatListControl.ChatListSubItem selectSubItem = e.SelectSubItem;
  327. if (selectSubItem.Status != LYFZ.ComponentLibrary.ChatListControl.ChatListSubItem.UserStatus.OffLine)
  328. DynamicMenu.ToolsClickProcessingMethod(selectSubItem.Tag, this);
  329. }
  330. #region 贴边隐藏
  331. protected override void OnMouseDown(MouseEventArgs e)
  332. {
  333. Point point = e.Location;
  334. if (e.Button == MouseButtons.Left)
  335. {
  336. this.isMouseDown = true;
  337. }
  338. base.OnMouseDown(e);
  339. }
  340. protected override void OnMouseUp(MouseEventArgs e)
  341. {
  342. this.isMouseDown = false;
  343. base.OnMouseUp(e);
  344. }
  345. protected override void OnLocationChanged(EventArgs e)
  346. {
  347. base.OnLocationChanged(e);
  348. this.mStopAnthor();
  349. }
  350. /// <summary>
  351. /// 在窗体位置发生改变时设置窗体当前位置状态
  352. /// </summary>
  353. private void mStopAnthor()
  354. {
  355. if (this.Left <= 2)
  356. {
  357. this.Aanhor = AnchorStyles.Left;
  358. return;
  359. }
  360. if (this.Left >= Screen.PrimaryScreen.Bounds.Width - this.Width-2)
  361. {
  362. this.Aanhor = AnchorStyles.Right;
  363. return;
  364. }
  365. if (this.Top <= 2)
  366. {
  367. this.Aanhor = AnchorStyles.Top;
  368. return;
  369. }
  370. this.Aanhor = AnchorStyles.None;
  371. }
  372. int? hg = null;
  373. private int form_top_old;
  374. private int form_left_old;
  375. private int form_right_old;
  376. private int SW;
  377. private int SH;
  378. public bool isMouseDown;
  379. public AnchorStyles Aanhor;
  380. /// <summary>
  381. /// 更新服务器时间
  382. /// </summary>
  383. protected virtual void updateSDateTime()
  384. {
  385. }
  386. /// <summary>
  387. /// 定时器事件
  388. /// </summary>
  389. /// <param name="sender"></param>
  390. /// <param name="e"></param>
  391. private void timHide_Tick(object sender, EventArgs e)
  392. {
  393. //隐藏窗口的方法
  394. form_top_old = 1 - this.Height;
  395. form_left_old = 1 - this.Width;
  396. form_right_old = SW - 1;
  397. updateSDateTime();
  398. this.labTime.Text = LYFZ.WinAPI.CustomPublicMethod.GetDayOfWeek(SDateTime.Now.DayOfWeek) + " " + SDateTime.Now.ToString("HH:mm:ss") + "\r\n" + SDateTime.Now.ToString("yyyy年MM月dd日");
  399. //没点击移动时
  400. if (!this.isMouseDown)
  401. {
  402. //鼠标在窗体内时
  403. if (this.Bounds.Contains(Cursor.Position))
  404. {
  405. switch (this.Aanhor)
  406. {
  407. //执行右移特效
  408. case AnchorStyles.Left:
  409. if (hg == null)
  410. {
  411. hg = this.Height;
  412. }
  413. this.Height = MaximumSize.Height;
  414. this.Top = 0;
  415. // int b = this.Left;
  416. //for (int i = b; i < 0; i += 10)
  417. //{
  418. // this.Left = i;
  419. //}
  420. this.Left = 0;
  421. break;
  422. //执行左移特效
  423. case AnchorStyles.Right:
  424. if (hg == null)
  425. {
  426. hg = this.Height;
  427. }
  428. this.Height = MaximumSize.Height;
  429. this.Top = 0;
  430. //int c = this.Left;
  431. //for (int i = c; i > SW - this.Width; i -= 10)
  432. //{
  433. // this.Left = i;
  434. //}
  435. this.Left = SW - this.Width;
  436. break;
  437. //执行下移特效
  438. case AnchorStyles.Top:
  439. // int a = this.Top;
  440. //for (int i = a; i < 0; i += 10)
  441. //{
  442. // this.Top = i;
  443. //}
  444. this.Top = 0;
  445. break;
  446. }
  447. //hg不为空的话,恢复成原来高度
  448. if (hg != null && this.Left > 0 && this.Left < Screen.PrimaryScreen.Bounds.Width - this.Width)
  449. {
  450. this.Height = (int)hg;
  451. hg = null;
  452. }
  453. }
  454. else
  455. {
  456. switch (this.Aanhor)
  457. {
  458. //执行左移特效
  459. case AnchorStyles.Left:
  460. if (this.Left != form_left_old)
  461. {
  462. //for (int i = 0; i >= form_left_old; i -= 20)
  463. //{
  464. // this.Left = i;
  465. //}
  466. this.Left = form_left_old;
  467. }
  468. break;
  469. //执行右移特效
  470. case AnchorStyles.Right:
  471. if (this.Left != form_right_old)
  472. {
  473. //for (int i = SW - this.Width; i <= form_right_old; i += 20)
  474. //{
  475. // this.Left = i;
  476. //}
  477. this.Left = form_right_old;
  478. }
  479. break;
  480. //执行上移特效
  481. case AnchorStyles.Top:
  482. if (this.Top != form_top_old)
  483. {
  484. //for (int i = 0; i >= form_top_old; i -= 20)
  485. //{
  486. // this.Top = i;
  487. //}
  488. this.Top = form_top_old;
  489. }
  490. break;
  491. }
  492. }
  493. }
  494. }
  495. #endregion
  496. }
  497. }