RowIndicatorImage Class
In This Article
The default row indicator icon with the row validation tooltip.
Namespace: DevExpress.WinUI.Grid
Assembly: DevExpress.WinUI.Grid.v23.2.dll
NuGet Package: DevExpress.WinUI
#Declaration
#Example
The following code sample displays row handles in the Row Indicator Panel and preserves the panel’s standard behavior:
<dxg:GridControl ...
ShowRowIndicator="True"
RowIndicatorWidth="48">
<dxg:GridControl.RowIndicatorTemplate>
<DataTemplate x:DataType="dxg:RowDataBase">
<Grid ToolTipService.ToolTip="{x:Bind RowHandle, Mode=OneWay}">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<dxg:RowIndicatorImage/>
<TextBlock Text="{x:Bind RowHandle, Mode=OneWay}"
VerticalAlignment="Center"
HorizontalAlignment="Center"
Grid.Column="1"/>
</Grid>
</DataTemplate>
</dxg:GridControl.RowIndicatorTemplate>
<!-- -->
</dxg:GridControl>
#Inheritance
Object
DependencyObject
UIElement
FrameworkElement
Panel
DevExpress.WinUI.Core.Internal.DXPanelBase
DevExpress.WinUI.Core.Internal.DXPanel
RowIndicatorImage
See Also