Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 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

ScrollBarAnnotationsAppearance Class

Contains properties that provide access to the appearance settings of particular scrollbar annotation marks.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v24.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public class ScrollBarAnnotationsAppearance :
    Freezable

The following members return ScrollBarAnnotationsAppearance objects:

#Remarks

The ScrollBarAnnotationsAppearance class provides properties that allow you to access the appearance settings of particular scrollbar annotation marks.

For example, if you need to change the appearance of the mark that corresponds to the focused row, pass the ScrollBarAnnotationInfo class instance with the appearance settings to the ScrollBarAnnotationsAppearance‘s ScrollBarAnnotationsAppearance.FocusedRow property.

The code sample below demonstrates how to customize a scrollbar annotation mark that corresponds to a focused row.

<dxg:GridControl ...>
    <dxg:GridControl.View>
        <dxg:TableView ScrollBarAnnotationMode="All">
            <dxg:TableView.ScrollBarAnnotationsAppearance>
                <dxg:ScrollBarAnnotationsAppearance>
                    <dxg:ScrollBarAnnotationsAppearance.FocusedRow>
                        <dxg:ScrollBarAnnotationInfo Alignment="Full" Brush="Blue"/>
                    </dxg:ScrollBarAnnotationsAppearance.FocusedRow>
                </dxg:ScrollBarAnnotationsAppearance>
            </dxg:TableView.ScrollBarAnnotationsAppearance>
        </dxg:TableView>
    </dxg:GridControl.View>
</dxg:GridControl>

#Inheritance

See Also