using DevExpress.Utils;
|
using DevExpress.XtraEditors;
|
|
namespace Verify
|
{
|
/// <summary>
|
/// SearchLookUpEdit
|
/// </summary>
|
public static class SearchLookUpEditExtend
|
{
|
/// <summary>
|
/// 设置默认
|
/// </summary>
|
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;
|
}
|
|
|
|
|
}
|
}
|