namespace Yw.WinFrmUI { public partial class HydroParterListCtrl : DevExpress.XtraEditors.XtraUserControl { public HydroParterListCtrl() { InitializeComponent(); } /// /// 列表为空时隐藏Page /// [Browsable(true)] [Display(Name = "列表为空时隐藏Page")] [DisplayName("列表为空时隐藏Page")] public bool HidePageWhenListIsNull { get { return _hidePageWhenListIsNull; } set { _hidePageWhenListIsNull = value; } } private bool _hidePageWhenListIsNull = true; /// /// 绑定数据 /// public void SetBindingData() { } } }