using DevExpress.Utils;
using DevExpress.XtraEditors;
namespace IStation.Win
{
///
/// SearchLookUpEdit
///
public static class SearchLookUpEditExtend
{
///
/// 设置默认
///
public static void SetDefaultView(this SearchLookUpEdit rhs, int height = 250)
{
rhs.Properties.AllowFocused = false;
rhs.Properties.NullText = "";
rhs.Properties.ShowClearButton = false;
var width = rhs.Size.Width - 105;
rhs.Properties.PopupFormSize = new Size(width, height);
rhs.Properties.Appearance.TextOptions.HAlignment = HorzAlignment.Center;
}
}
}