I have a custom control as the ToolTipTemplate in a GridViewDataColumn, and that is displaying perfectly.
However, when I set showduration with the ToolTipService or RadToolTipService ShowDuration property the duration stays at the default value.
How can I change the ShowDuration?
This is what my column XAML looks like.
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding PartName}"
CellStyleSelector
=
"{StaticResource DescriptionStyleSelector}"
Header
=
"Description"
Width
=
"450"
HeaderTextAlignment
=
"Center"
TextAlignment
=
"Center"
ToolTipService.ShowDuration
=
"60000"
telerik:RadToolTipService.ShowDuration
=
"60000"
>
<
telerik:GridViewColumn.ToolTipTemplate
>
<
DataTemplate
>
<
local:ActiveOperationsView
TrackingNum
=
"{Binding DataContext.TrackingNum, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type telerik:GridViewRow}}}"
Margin
=
"-8"
/>
</
DataTemplate
>
</
telerik:GridViewColumn.ToolTipTemplate
>
</
telerik:GridViewDataColumn
>