FrmSystemSet.cs 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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 FrmSystemSet : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmSystemSet()
  15. {
  16. InitializeComponent();
  17. this.Load += new EventHandler(FrmSystemSet_Load);
  18. this.btnAdd.Click += new EventHandler(btnAdd_Click);
  19. this.trvSystemSet.HideSelection = false;
  20. //自已绘制
  21. //this.trvSystemSet.DrawMode = TreeViewDrawMode.OwnerDrawText;
  22. // this.trvSystemSet.DrawNode += new DrawTreeNodeEventHandler(trvSystemSet_DrawNode);
  23. this.trvSystemSet.AfterSelect += new TreeViewEventHandler(trvSystemSet_AfterSelect);
  24. // this.trvSystemSet.AfterCheck += new TreeViewEventHandler(trvSystemSet_AfterCheck);
  25. this.btnDelete.Click += new EventHandler(btnDelete_Click);
  26. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  27. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  28. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  29. // this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  30. // this.panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  31. this.tab.SelectedIndexChanged += tab_SelectedIndexChanged;
  32. }
  33. protected virtual void tab_SelectedIndexChanged(object sender, EventArgs e)
  34. {
  35. //throw new NotImplementedException();
  36. }
  37. protected virtual void btnDelete_Click(object sender, EventArgs e)
  38. {
  39. }
  40. protected virtual void trvSystemSet_AfterSelect(object sender, TreeViewEventArgs e)
  41. {
  42. }
  43. protected virtual void btnAdd_Click(object sender, EventArgs e)
  44. {
  45. }
  46. protected virtual void FrmSystemSet_Load(object sender, EventArgs e)
  47. {
  48. }
  49. /* private void trvSystemSet_DrawNode(object sender, DrawTreeNodeEventArgs e)
  50. {
  51. e.DrawDefault = true; //我这里用默认颜色即可,只需要在TreeView失去焦点时选中节点仍然突显
  52. //return;
  53. if ((e.State & TreeNodeStates.Selected) != 0)
  54. {
  55. //演示为绿底白字
  56. e.Graphics.FillRectangle(Brushes.DarkBlue, e.Node.Bounds);
  57. Font nodeFont = e.Node.NodeFont;
  58. if (nodeFont == null) nodeFont = ((TreeView)sender).Font;
  59. e.Graphics.DrawString(e.Node.Text, nodeFont, Brushes.White, Rectangle.Inflate(e.Bounds, 2, 0));
  60. }
  61. else
  62. {
  63. e.DrawDefault = true;
  64. }
  65. if ((e.State & TreeNodeStates.Focused) != 0)
  66. {
  67. using (Pen focusPen = new Pen(Color.Black))
  68. {
  69. focusPen.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot;
  70. Rectangle focusBounds = e.Node.Bounds;
  71. focusBounds.Size = new Size(focusBounds.Width - 1,
  72. focusBounds.Height - 1);
  73. e.Graphics.DrawRectangle(focusPen, focusBounds);
  74. }
  75. }
  76. }*/
  77. }
  78. }