Skip to content
Discussion options

You must be logged in to vote

not sure how you are trying to set ToolTip to the rows. I tried blow code in SampleApp and it works fine.

<tv:TableView ItemsSource="{Binding Items}" 
              ContainerContentChanging="TableView_ContainerContentChanging" />
private void TableView_ContainerContentChanging(ListViewBase sender, ContainerContentChangingEventArgs args)
{
    if (args.Item is ExampleModel model && args.ItemContainer is TableViewRow row)
    {
        ToolTipService.SetToolTip(row, $"{model.FirstName} {model.LastName}");
    }
}

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
2 replies
@JLBLU
Comment options

@w-ahmad
Comment options

Answer selected by w-ahmad
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants