Hi,
In RadScheduleView I wan to show the start and end time for the particular slot when mouse hovering on that slot. For achieving this, I
used the Mouseoverhighlightstyle. The code looks like this.
But it is not working....
ANY HELP.......
In RadScheduleView I wan to show the start and end time for the particular slot when mouse hovering on that slot. For achieving this, I
used the Mouseoverhighlightstyle. The code looks like this.
<ControlTemplate> <Grid> <TextBlock x:Name="StartTextBox" Margin="4 2" Foreground="Black" HorizontalAlignment="Left" VerticalAlignment="Top" Text="{Binding ActualStart,StringFormat=t}" /> <TextBlock x:Name="EndTextBox" Margin="4 2" Foreground="Black" HorizontalAlignment="Right" VerticalAlignment="Bottom" Text="{Binding ActualEnd,StringFormat=t}" /> </Grid> </ControlTemplate>But it is not working....
ANY HELP.......