1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.Software.MainBusiness.VersionControl
- {
- public interface IVersionFuction
- {
- /// <summary>
- /// 下拉框数据移除控制
- /// </summary>
- /// <param name="comboBox">下拉框</param>
- /// <param name="MoveValueList">需要移除的数据</param>
- void RemoveDrowDownListData(System.Windows.Forms.Control control, string[] MoveValueList);
- /// <summary>
- /// 控件隐藏和显示并调整布局
- /// </summary>
- /// <param name="showHideControls">显示隐藏控件</param>
- /// <param name="moveControls">调整控件位置</param>
- void ShowOrHideControl(
- List<System.Windows.Forms.Control> showHideControls,
- List<System.Windows.Forms.Control> moveControls);
- void ShowOrHideTabControl(
- System.Windows.Forms.TabControl tabControl,
- List<System.Windows.Forms.TabPage> tabPages);
- }
- }
|