IVersionFuction.cs 1.0 KB

1234567891011121314151617181920212223242526272829
  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 interface IVersionFuction
  8. {
  9. /// <summary>
  10. /// 下拉框数据移除控制
  11. /// </summary>
  12. /// <param name="comboBox">下拉框</param>
  13. /// <param name="MoveValueList">需要移除的数据</param>
  14. void RemoveDrowDownListData(System.Windows.Forms.Control control, string[] MoveValueList);
  15. /// <summary>
  16. /// 控件隐藏和显示并调整布局
  17. /// </summary>
  18. /// <param name="showHideControls">显示隐藏控件</param>
  19. /// <param name="moveControls">调整控件位置</param>
  20. void ShowOrHideControl(
  21. List<System.Windows.Forms.Control> showHideControls,
  22. List<System.Windows.Forms.Control> moveControls);
  23. void ShowOrHideTabControl(
  24. System.Windows.Forms.TabControl tabControl,
  25. List<System.Windows.Forms.TabPage> tabPages);
  26. }
  27. }