namespace Yw.WinFrmUI
{
///
/// SearchLookUpEdit
///
public static class SearchLookUpEditExtensions
{
///
/// 设置默认
///
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;
}
}
}