FrmDepartmentSet.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.UI.InitialSet
  11. {
  12. public partial class FrmDepartmentSet : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmDepartmentSet()
  15. {
  16. InitializeComponent();
  17. this.IsCustomScrollBar = true;
  18. this.btnSave.Click += new EventHandler(btnSave_Click);
  19. this.btnDelete.Click += new EventHandler(btnDelete_Click);
  20. this.btnClose.Click += new EventHandler(btnClose_Click);
  21. this.Load += new EventHandler(FrmDepartmentSet_Load);
  22. this.btnUpdate.Click += new EventHandler(btnUpdate_Click);
  23. this.trvdep.AfterSelect += new TreeViewEventHandler(trvdep_AfterSelect);
  24. this.trvdep.DrawMode = TreeViewDrawMode.OwnerDrawText;
  25. this.trvdep.DrawNode += new DrawTreeNodeEventHandler(trvdep_DrawNode);
  26. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  27. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  28. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  29. trvdep.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  30. tabControlEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  31. tabPage1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  32. tabPage2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  33. }
  34. protected virtual void trvdep_AfterSelect(object sender, TreeViewEventArgs e)
  35. {
  36. }
  37. protected virtual void btnUpdate_Click(object sender, EventArgs e)
  38. {
  39. }
  40. protected virtual void FrmDepartmentSet_Load(object sender, EventArgs e)
  41. {
  42. }
  43. protected virtual void btnClose_Click(object sender, EventArgs e)
  44. {
  45. }
  46. protected virtual void btnDelete_Click(object sender, EventArgs e)
  47. {
  48. }
  49. protected virtual void btnSave_Click(object sender, EventArgs e)
  50. {
  51. }
  52. private void trvdep_DrawNode(object sender, DrawTreeNodeEventArgs e)
  53. {
  54. e.DrawDefault = true; //我这里用默认颜色即可,只需要在TreeView失去焦点时选中节点仍然突显
  55. //return;
  56. if ((e.State & TreeNodeStates.Selected) != 0)
  57. {
  58. //演示为绿底白字
  59. e.Graphics.FillRectangle(Brushes.DarkBlue, e.Node.Bounds);
  60. Font nodeFont = e.Node.NodeFont;
  61. if (nodeFont == null) nodeFont = ((TreeView)sender).Font;
  62. e.Graphics.DrawString(e.Node.Text, nodeFont, Brushes.White, Rectangle.Inflate(e.Bounds, 2, 0));
  63. }
  64. else
  65. {
  66. e.DrawDefault = true;
  67. }
  68. if ((e.State & TreeNodeStates.Focused) != 0)
  69. {
  70. using (Pen focusPen = new Pen(Color.Black))
  71. {
  72. focusPen.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot;
  73. Rectangle focusBounds = e.Node.Bounds;
  74. focusBounds.Size = new Size(focusBounds.Width - 1,
  75. focusBounds.Height - 1);
  76. e.Graphics.DrawRectangle(focusPen, focusBounds);
  77. }
  78. }
  79. }
  80. }
  81. }