using DevExpress.XtraGrid.Views.BandedGrid; using DevExpress.XtraGrid.Views.Grid; using Lskj.Control.ZKFinger; using System.Collections.Generic; using Lskj.Util; using DevExpress.XtraTab; namespace Lskj.Control.Model { /// /// Static registries for banded-grid drag helpers. The helpers unregister /// themselves from these dictionaries when their GridView is disposed; /// module closing therefore does not need to scan a control tree. /// public static class StaticBandedControl { // Keep the old public fields as aliases so already deployed plug-ins // loaded from lib do not fail with MissingFieldException. [System.Obsolete("请使用 StaticControl.DogVerifyModuleForms")] public static List DogVerifyModuleForms = StaticControl.DogVerifyModuleForms; [System.Obsolete("请使用 StaticControl.DogVerifyNoPageForms")] public static List DogVerifyNoPageForms = StaticControl.DogVerifyNoPageForms; [System.Obsolete("请使用 StaticControl.ConditionsPanelDic")] public static Dictionary ConditionsPanelDic = StaticControl.ConditionsPanelDic; /// /// 表格拖拽类,key值为源表,多表格 /// public static Dictionary> BandedGridViewDragGridDic = new Dictionary>(); /// /// 表格拖拽类,key值为目标表 /// public static Dictionary> BandedTargetViewDragGridDic = new Dictionary>(); /// /// 当前拖拽源表格 /// public static BandedGridView SourceDragBandedGridView; /// /// 指纹识别模块 /// public static FingerHelper fingerHelper; /// /// 进度条 /// public static FrmProgressBar frmProgressBar; } }