This question is locked. New answers and comments are not allowed.
Hello,
do you know if it's possible to create an AppointmentItem style with the IsEnabled property set to false, but with an active tooltip?
I tryed folowing code, but it doesn't seem to work.
<Style x:Key="ReadOnlyVerticalStyle" TargetType="telerik:AppointmentItem">
<Setter Property="IsEnabled" Value="False"/>
<Setter Property="ToolTipService.ToolTip">
<Setter.Value>
<TextBlock Text="test"/>
</Setter.Value>
</Setter>
</Style>
Thanks a lot