Hi,
We are currently customizing The radscheduleview with a lot of custom styles and templates. One of the customer's requirements is to associate a remark with a date, We try to make this visible in the Radscheduleview by styling the TimeRulerItemTemplateSelector.MonthItemTemplate:
It's a very simplistic example, in our app we bind the text and visibility, but this has the same issue:
The Balloon displays nicely (image in attachment), but unfortunately the tooltip never pops up when you hover over the image. I guess this has something to do with the style, I'm guessing Zindexes but after experimenting a bit with the default styles I can't get the tooltip to show..
Any suggestions?
Thanks in advance!
EDIT: we use the Windows8 theme btw
We are currently customizing The radscheduleview with a lot of custom styles and templates. One of the customer's requirements is to associate a remark with a date, We try to make this visible in the Radscheduleview by styling the TimeRulerItemTemplateSelector.MonthItemTemplate:
<DataTemplate>
<Grid>
<TextBlock HorizontalAlignment="Left" Text="{Binding FormattedValue}"/>
<Image Height="15" HorizontalAlignment="Right" Margin="0,0,100,0" Source="pack://application:,,,/Images/speech_bubble.png">
<Image.ToolTip>
<TextBlock Text="Hi! I'm a tooltip"/>
</Image.ToolTip>
</Image>
</Grid>
</DataTemplate>It's a very simplistic example, in our app we bind the text and visibility, but this has the same issue:
The Balloon displays nicely (image in attachment), but unfortunately the tooltip never pops up when you hover over the image. I guess this has something to do with the style, I'm guessing Zindexes but after experimenting a bit with the default styles I can't get the tooltip to show..
Any suggestions?
Thanks in advance!
EDIT: we use the Windows8 theme btw