■ GridView 클래스의 CustomDrawEmptyForeground 이벤트를 사용해 데이터가 없을 때 텍스트를 표시하는 방법을 보여준다.
▶ MainForm.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
using System.Drawing; using System.Windows.Forms; using DevExpress.Data.Filtering; using DevExpress.LookAndFeel; using DevExpress.Skins; using DevExpress.Utils; using DevExpress.XtraEditors; using DevExpress.XtraGrid.Views.Base; using DevExpress.XtraGrid.Views.Grid; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : XtraForm { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 링크 브러시 /// </summary> private SolidBrush linkBrush = new SolidBrush(EditorsSkins.GetSkin(UserLookAndFeel.Default.ActiveLookAndFeel).Colors["HyperLinkTextColor"]); /// <summary> /// 매칭 미발견 텍스트 폰트 /// </summary> private Font noMatchFoundTextFont = new Font("Tahoma", 10); /// <summary> /// 매칭 미발견 텍스트 /// </summary> private string noMatchFoundText = "No matches found"; /// <summary> /// 매칭 미발견 사각형 /// </summary> private Rectangle noMatchFoundRectangle = Rectangle.Empty; /// <summary> /// 다시 조회 시도 텍스트 폰트 /// </summary> private Font trySearchingAgainTextFont = new Font("Tahoma", 15, FontStyle.Underline); /// <summary> /// 다시 조회 시도 텍스트 볼드체 폰트 /// </summary> private Font trySearchingAgainTextBoldFont = new Font("Tahoma", 15, FontStyle.Underline | FontStyle.Bold); /// <summary> /// 다시 조회 시도 텍스트 /// </summary> private string trySearchingAgainText = "Try searching again"; /// <summary> /// 다시 조회 시도 사각형 /// </summary> private Rectangle trySearchingAgainRectangle = Rectangle.Empty; /// <summary> /// 다시 조회 시도 사각형 커서 포함 여부 /// </summary> private bool trySearchingAgainRectangleContainCursor = false; /// <summary> /// 오프셋 /// </summary> private int offset = 10; /// <summary> /// 조회명 /// </summary> private string searchName = string.Empty; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); this.gridView.InitializeView ( true, // Multi Select GridMultiSelectMode.RowSelect, // Grid Multi Select Mode DrawFocusRectStyle.CellFocus, // Draw Focus Rect Style true, // Show Indicator true, // Show Column Headers true, // Allow Column Moving true, // Allow Column Resizing true, // Allow Filter true, // Allow Sort false, // Allow Cell Merge EditorShowMode.Default, // Editor Show Mode false // Editable ); this.gridView.OptionsBehavior.AutoPopulateColumns = true; this.gridControl.DataSource = new nwindDataSetTableAdapters.EmployeesTableAdapter().GetData(); this.gridView.ActiveFilterCriteria = new BinaryOperator("City", searchName); this.gridView.CustomDrawEmptyForeground += gridView_CustomDrawEmptyForeground; this.gridView.MouseMove += gridView_MouseMove; this.gridView.MouseDown += gridView_MouseDown; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 그리드 뷰 빈 전경 커스텀 그리기 - gridView_CustomDrawEmptyForeground(sender, e) /// <summary> /// 그리드 뷰 빈 전경 커스텀 그리기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void gridView_CustomDrawEmptyForeground(object sender, CustomDrawEventArgs e) { e.DefaultDraw(); e.Appearance.Options.UseFont = true; e.Appearance.Font = this.noMatchFoundTextFont; Size size = e.Appearance.CalcTextSize(e.Cache, this.noMatchFoundText, e.Bounds.Width).ToSize(); int x = (e.Bounds.Width - size.Width) / 2; int y = e.Bounds.Y + offset; this.noMatchFoundRectangle = new Rectangle(new Point(x, y), size); e.Appearance.DrawString(e.Cache, this.noMatchFoundText, this.noMatchFoundRectangle); e.Appearance.Font = this.trySearchingAgainRectangleContainCursor ? this.trySearchingAgainTextBoldFont : this.trySearchingAgainTextFont; size = e.Appearance.CalcTextSize(e.Cache, this.trySearchingAgainText, e.Bounds.Width).ToSize(); x = this.noMatchFoundRectangle.X - (size.Width - this.noMatchFoundRectangle.Width) / 2; y = this.noMatchFoundRectangle.Bottom + offset; size.Width += offset; this.trySearchingAgainRectangle = new Rectangle(new Point(x, y), size); e.Appearance.DrawString(e.Cache, this.trySearchingAgainText, this.trySearchingAgainRectangle, this.linkBrush); } #endregion #region 그리드 뷰 마우스 이동시 처리하기 - gridView_MouseMove(sender, e) /// <summary> /// 그리드 뷰 마우스 이동시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void gridView_MouseMove(object sender, MouseEventArgs e) { GridView gridView = sender as GridView; this.trySearchingAgainRectangleContainCursor = this.trySearchingAgainRectangle.Contains(e.Location); gridView.GridControl.Cursor = this.trySearchingAgainRectangleContainCursor ? Cursors.Hand : Cursors.Default; gridView.InvalidateRect(this.trySearchingAgainRectangle); } #endregion #region 그리드 뷰 마우스 DOWN 처리하기 - gridView_MouseDown(sender, e) /// <summary> /// 그리드 뷰 마우스 DOWN 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void gridView_MouseDown(object sender, MouseEventArgs e) { GridView gridView = sender as GridView; if(this.trySearchingAgainRectangleContainCursor) { this.searchName = XtraInputBox.Show ( string.Format("Enter {0}", "Name"), string.Format("Enter {0} dialog", "Name"), this.searchName ); gridView.ActiveFilterCriteria = new BinaryOperator("City", this.searchName); } } #endregion } } |