Skip to main content
A newer version of this page is available. .

ScrollBarAnnotationsAppearance Class

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

Namespace: DevExpress.Xpf.Grid

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, 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