Hi,
I would like to know if there is a way to show tooltip on the RowSelectorSettings. Thanks!
Using the TooltipService there is no need to handle the MouseEnter event. It will display automatically when your mouse enters the Rowselector
-SteveZ
Thanks Steve. Can you show me how to display the tool tip in the MouseEnter event?
So, you can do this, by creating a custom style and ControlTemplate for the RowSelectorCellControl, and placing a Tooltip inside of it:
If you want the tooltip to display the index of the row, you can do something like:
<ToolTipService.ToolTip>
<ToolTip Content="{Binding Path=Cell.Row.Index,RelativeSource={RelativeSource TemplatedParent}}" />
</ToolTipService.ToolTip>
Note, this will be the actual index of the row, which is 0 based, so you'll most likely need to write an IValueConverter to manipulate it to match your Seeding index, which by default is 1.
Hope this helps,