VersionFunction.cs 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.Software.MainBusiness.VersionControl
  6. {
  7. public class VersionFunction : IVersionFuction
  8. {
  9. /// <summary>
  10. /// 下拉框数据移除控制
  11. /// </summary>
  12. /// <param name="comboBox">下拉框</param>
  13. /// <param name="MoveValueList">需要移除的数据</param>
  14. public void RemoveDrowDownListData(System.Windows.Forms.Control control, string[] MoveValueList)
  15. {
  16. LYFZ.ComponentLibrary.ComboBoxTreeViewEx comboBox = (LYFZ.ComponentLibrary.ComboBoxTreeViewEx)control;
  17. string strValueData = "," + string.Join(",", MoveValueList) + ",";
  18. List<System.Windows.Forms.TreeNode> removeItemLsit = new List<System.Windows.Forms.TreeNode>();
  19. foreach (System.Windows.Forms.TreeNode obj in comboBox.Nodes)
  20. {
  21. if(strValueData.IndexOf(","+obj.Tag.ToString()+",")>-1)
  22. {
  23. removeItemLsit.Add(obj);
  24. }
  25. }
  26. foreach (System.Windows.Forms.TreeNode obj in removeItemLsit)
  27. {
  28. comboBox.Nodes.Remove(obj);
  29. }
  30. }
  31. /// <summary>
  32. /// 控件隐藏和显示并调整布局
  33. /// </summary>
  34. /// <param name="showHideControls">显示隐藏控件</param>
  35. /// <param name="moveControls">调整控件位置</param>
  36. public void ShowOrHideControl(
  37. List<System.Windows.Forms.Control> showHideControls,
  38. List<System.Windows.Forms.Control> moveControls)
  39. {
  40. int splitWidth = 10;
  41. System.Drawing.Point firstPoint = new System.Drawing.Point(-1,-1);
  42. if(showHideControls.Count>0)
  43. {
  44. for(int i=0;i<showHideControls.Count;i++)
  45. {
  46. showHideControls[i].Visible = false;
  47. if(firstPoint.X==-1)
  48. {
  49. firstPoint =
  50. new System.Drawing.Point(
  51. showHideControls[i].Location.X,
  52. showHideControls[i].Location.Y
  53. );
  54. }
  55. else
  56. {
  57. if(firstPoint.X>showHideControls[i].Location.X)
  58. {
  59. firstPoint.X = showHideControls[i].Location.X;
  60. }
  61. }
  62. }
  63. }
  64. if (moveControls != null)
  65. {
  66. foreach (System.Windows.Forms.Control control in moveControls)
  67. {
  68. control.Location = new System.Drawing.Point(
  69. firstPoint.X,
  70. control.Location.Y
  71. );
  72. firstPoint.X +=control.Width+ splitWidth;
  73. }
  74. }
  75. }
  76. /// <summary>
  77. /// 移除tab控件数据
  78. /// </summary>
  79. /// <param name="tabControl"></param>
  80. /// <param name="tabPages"></param>
  81. public void ShowOrHideTabControl(System.Windows.Forms.TabControl tabControl, List<System.Windows.Forms.TabPage> tabPages)
  82. {
  83. foreach(System.Windows.Forms.TabPage tabPage in tabPages)
  84. {
  85. tabControl.TabPages.Remove(tabPage);
  86. }
  87. }
  88. }
  89. }