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