We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please, add Tooltip.Tip property to DataGridTextColumn so it works like this:
Tooltip.Tip
DataGridTextColumn
<DataGrid > <DataGrid.Columns> <DataGridTextColumn Header="Name" Binding="{Binding Name}" ToolTip.Tip="{Binding FullName}"/> </DataGrid.Columns> </DataGrid>
and if possible to DataGridCheckBoxColumn too.
DataGridCheckBoxColumn
I know I can do it with a DataGridTemplateColumn but it is way too cumbersome:
DataGridTemplateColumn
<DataGrid > <DataGrid.Columns> <DataGridTemplateColumn Header="Name"> <DataGridTemplateColumn.CellTemplate> <DataTemplate> <TextBlock Text="{Binding Name}" ToolTip.Tip="{Binding FullName}" /> </DataTemplate> </DataGridTemplateColumn.CellTemplate> </DataGridTemplateColumn> </DataGrid.Columns> </DataGrid>
Allow the Tooltip.Tip property to DataGridTextColumn :
<DataGridTextColumn Header="Name" Binding="{Binding Name}" ToolTip.Tip="{Binding FullName}"/>
No response
The text was updated successfully, but these errors were encountered:
You can just use CellStyleClasses and define it in a Style with Selector like DataGridCell.ToolTip
DataGridCell.ToolTip
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
Please, add
Tooltip.Tip
property toDataGridTextColumn
so it works like this:and if possible to
DataGridCheckBoxColumn
too.I know I can do it with a
DataGridTemplateColumn
but it is way too cumbersome:Describe the solution you'd like
Allow the
Tooltip.Tip
property toDataGridTextColumn
:Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: