|
13 | 13 | </Grid.DataContext>
|
14 | 14 |
|
15 | 15 | <scheduler:SfScheduler x:Name="scheduler"
|
16 |
| - ItemsSource="{Binding Appointments}" |
17 |
| - EnableToolTip="True"> |
| 16 | + ItemsSource="{Binding Appointments}" |
| 17 | + EnableToolTip="True"> |
18 | 18 | <scheduler:SfScheduler.ToolTipTemplate>
|
19 | 19 | <DataTemplate>
|
20 | 20 | <Border Background="Black"
|
|
26 | 26 | <ColumnDefinition Width="*" />
|
27 | 27 | </Grid.ColumnDefinitions>
|
28 | 28 | <Rectangle Fill="{Binding AppointmentBackground}"
|
29 |
| - Grid.Column="0" |
30 |
| - VerticalAlignment="Stretch" |
31 |
| - HorizontalAlignment="Left" |
32 |
| - Width="10" |
33 |
| - Margin="0,0,5,0" /> |
| 29 | + Grid.Column="0" |
| 30 | + VerticalAlignment="Stretch" |
| 31 | + HorizontalAlignment="Left" |
| 32 | + Width="10" |
| 33 | + Margin="0,0,5,0" /> |
34 | 34 | <StackPanel Grid.Column="1"
|
35 |
| - Orientation="Vertical"> |
| 35 | + Orientation="Vertical"> |
36 | 36 | <TextBlock Text="{Binding Subject}"
|
37 |
| - TextWrapping="Wrap" |
38 |
| - FontWeight="Bold" |
39 |
| - FontSize="12" |
40 |
| - Foreground="White" |
41 |
| - TextTrimming="CharacterEllipsis" |
42 |
| - Margin="0,0,0,5" /> |
| 37 | + TextWrapping="Wrap" |
| 38 | + FontWeight="Bold" |
| 39 | + FontSize="12" |
| 40 | + Foreground="White" |
| 41 | + TextTrimming="CharacterEllipsis" |
| 42 | + Margin="0,0,0,5" /> |
43 | 43 | <StackPanel Orientation="Horizontal">
|
44 | 44 | <TextBlock Text="Start Time: " Margin="0,0,2,0"
|
45 |
| - FontWeight="Bold" |
46 |
| - FontSize="12" |
47 |
| - Foreground="White" /> |
| 45 | + FontWeight="Bold" |
| 46 | + FontSize="12" |
| 47 | + Foreground="White" /> |
48 | 48 | <TextBlock Text="{Binding StartTime}"
|
49 |
| - FontSize="12" |
50 |
| - Foreground="White" /> |
| 49 | + FontSize="12" |
| 50 | + Foreground="White" /> |
51 | 51 | </StackPanel>
|
52 | 52 | <StackPanel Orientation="Horizontal">
|
53 | 53 | <TextBlock Text="End Time: " Margin="0,0,2,0"
|
54 |
| - FontWeight="Bold" |
55 |
| - FontSize="12" |
56 |
| - Foreground="White" /> |
| 54 | + FontWeight="Bold" |
| 55 | + FontSize="12" |
| 56 | + Foreground="White" /> |
57 | 57 | <TextBlock Text="{Binding EndTime}"
|
58 |
| - FontSize="12" |
59 |
| - Foreground="White" /> |
| 58 | + FontSize="12" |
| 59 | + Foreground="White" /> |
60 | 60 | </StackPanel>
|
61 | 61 | </StackPanel>
|
62 | 62 | </Grid>
|
|
0 commit comments