Example E2793
Visible to All Users

WinForms Data Grid - How to display a custom button within a column header

This example demonstrates how to "create" and display a custom button within a column header.

The CustomDrawColumnHeader event is handled to draw a clickable region within the column header.

C#
void OnCustomDrawColumnHeader(object sender, ColumnHeaderCustomDrawEventArgs e) { if(e.Column == null) return; DefaultDrawColumnHeader(e); DrawCustomButton(e); e.Handled = true; }

Files to Review

Documentation

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)

Example Code

WindowsApplication3/ColumnHeaderExtender.cs(vb)
C#
using System; using System.Collections.Generic; using System.Windows.Forms; using DevExpress.Skins; using DevExpress.XtraGrid.Views.Grid; using System.Drawing; using DevExpress.XtraEditors.Drawing; using DevExpress.XtraEditors.Controls; using DevExpress.XtraGrid.Views.Grid.ViewInfo; using DevExpress.XtraGrid.Drawing; using DevExpress.Utils.Drawing; using DevExpress.XtraEditors; using DevExpress.XtraGrid.Columns; using DevExpress.Utils; namespace DXSample { public class ColumnHeaderExtender { GridView view; SkinEditorButtonPainter customButtonPainter; EditorButtonObjectInfoArgs args; Size buttonSize; public ColumnHeaderExtender(GridView view) { this.view = view; buttonSize = new Size(14, 14); } public void AddCustomButton() { CreateButtonPainter(); CreateButtonInfoArgs(); SubscribeToEvents(); } private void CreateButtonInfoArgs() { EditorButton btn = new EditorButton(ButtonPredefines.Glyph); args = new EditorButtonObjectInfoArgs(btn, new DevExpress.Utils.AppearanceObject()); } private void CreateButtonPainter() { customButtonPainter = new SkinEditorButtonPainter(DevExpress.LookAndFeel.UserLookAndFeel.Default.ActiveLookAndFeel); } private void SubscribeToEvents() { view.CustomDrawColumnHeader += OnCustomDrawColumnHeader; view.MouseDown += OnMouseDown; view.MouseUp += OnMouseUp; view.MouseMove += OnMouseMove; } void OnMouseUp(object sender, MouseEventArgs e) { GridHitInfo hitInfo = view.CalcHitInfo(e.Location); if(hitInfo.HitTest != GridHitTest.Column) return; GridColumn column = hitInfo.Column; if(IsButtonRect(e.Location, column)) { SetButtonState(column, ObjectState.Normal); XtraMessageBox.Show(string.Format("Custom Button in {0}", column.FieldName)); // your code here DXMouseEventArgs.GetMouseArgs(e).Handled = true; } } void OnMouseMove(object sender, MouseEventArgs e) { GridHitInfo hitInfo = view.CalcHitInfo(e.Location); if(hitInfo.HitTest != GridHitTest.Column) return; GridColumn column = hitInfo.Column; if(IsButtonRect(e.Location, column)) SetButtonState(column, ObjectState.Hot); else SetButtonState(column, ObjectState.Normal); } void OnMouseDown(object sender, MouseEventArgs e) { GridHitInfo hitInfo = view.CalcHitInfo(e.Location); if(hitInfo.HitTest != GridHitTest.Column) return; GridColumn column = hitInfo.Column; if(IsButtonRect(e.Location, column)) { SetButtonState(column, ObjectState.Pressed); DXMouseEventArgs.GetMouseArgs(e).Handled = true; } } private void SetButtonState(GridColumn column, ObjectState state) { column.Tag = state; view.InvalidateColumnHeader(column); } private bool IsButtonRect(Point point, GridColumn column) { GraphicsInfo info = new GraphicsInfo(); info.AddGraphics(null); GridViewInfo viewInfo = view.GetViewInfo() as GridViewInfo; GridColumnInfoArgs columnArgs = viewInfo.ColumnsInfo[column]; Rectangle buttonRect = CalcButtonRect(columnArgs, info.Graphics); info.ReleaseGraphics(); return buttonRect.Contains(point); } private Rectangle CalcButtonRect(GridColumnInfoArgs columnArgs, Graphics gr) { Rectangle columnRect = columnArgs.Bounds; int innerElementsWidth = CalcInnerElementsMinWidth(columnArgs, gr); Rectangle buttonRect = new Rectangle(columnRect.Right - innerElementsWidth - buttonSize.Width - 2, columnRect.Y + columnRect.Height / 2 - buttonSize.Height / 2, buttonSize.Width, buttonSize.Height); return buttonRect; } private int CalcInnerElementsMinWidth(GridColumnInfoArgs columnArgs, Graphics gr) { bool canDrawMode = true; return columnArgs.InnerElements.CalcMinSize(gr, ref canDrawMode).Width; } void OnCustomDrawColumnHeader(object sender, ColumnHeaderCustomDrawEventArgs e) { if(e.Column == null) return; DefaultDrawColumnHeader(e); DrawCustomButton(e); e.Handled = true; } private void DrawCustomButton(ColumnHeaderCustomDrawEventArgs e) { SetUpButtonInfoArgs(e); customButtonPainter.DrawObject(args); } private void SetUpButtonInfoArgs(ColumnHeaderCustomDrawEventArgs e) { args.Cache = e.Cache; args.Bounds = CalcButtonRect(e.Info, e.Cache.Graphics); ObjectState state = ObjectState.Normal; if(e.Column.Tag is ObjectState) state = (ObjectState)e.Column.Tag; args.State = state; } private static void DefaultDrawColumnHeader(ColumnHeaderCustomDrawEventArgs e) { e.Painter.DrawObject(e.Info); } private void UnsubscribeFromEvents() { view.CustomDrawColumnHeader -= OnCustomDrawColumnHeader; view.MouseDown -= OnMouseDown; view.MouseUp -= OnMouseUp; view.MouseMove -= OnMouseMove; } public void RemoveCustomButton() { UnsubscribeFromEvents(); } } }

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.