Skip to main content
All docs
V25.1
  • DevExpress v25.1 Update — Your Feedback Matters

    Our What's New in v25.1 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

    Take the survey Not interested

    TileView.GroupHeaderContextButtonToolTip Event

    Allows you to provide custom tooltips for Rating and Track Bar context buttons in group headers. This event is in effect when you add group header buttons in Kanban layout mode.

    Namespace: DevExpress.XtraGrid.Views.Tile

    Assembly: DevExpress.XtraGrid.v25.1.dll

    NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

    #Declaration

    [DXCategory("Data")]
    public event GroupHeaderContextButtonToolTipEventHandler GroupHeaderContextButtonToolTip

    #Event Data

    The GroupHeaderContextButtonToolTip event's data class is DevExpress.XtraGrid.Views.Tile.GroupHeaderContextButtonToolTipEventArgs.

    #Remarks

    In Kanban layout mode, you can add buttons to group headers via the TileView.OptionsKanban.GroupHeaderContextButtons collection. To provide tooltips for group header buttons, you can use their ContextButton.ToolTip and ContextButton.SuperTip properties.

    Default tooltips for Rating and Track Bar context buttons display button values. The GroupHeaderContextButtonToolTip event allows you to provide custom tooltips for these context buttons. To specify a custom tooltip, assign text to the e.Text event parameter or change the button’s e.Item.ToolTip/e.Item.SuperTip property.

    See Also