|
56 | 56 |
|
57 | 57 | <ContentPage.ToolbarItems> |
58 | 58 | <ToolbarItem |
59 | | - Text="Delete" |
60 | 59 | Command="{Binding DeleteCommand}" |
61 | 60 | Order="Primary" |
62 | 61 | Priority="0" |
63 | | - IconImageSource="{StaticResource IconDelete}" /> |
| 62 | + IconImageSource="{StaticResource IconDelete}" |
| 63 | + SemanticProperties.Description="Delete" /> |
64 | 64 | </ContentPage.ToolbarItems> |
65 | 65 |
|
66 | 66 | <Grid> |
|
97 | 97 | ItemsSource="{Binding Icons}"> |
98 | 98 | <CollectionView.ItemTemplate> |
99 | 99 | <DataTemplate x:DataType="models:IconData"> |
100 | | - <Grid RowDefinitions="Auto,4" RowSpacing="{StaticResource size60}"> |
| 100 | + <Grid RowDefinitions="Auto,4" RowSpacing="{StaticResource size60}" |
| 101 | + SemanticProperties.Description="{Binding Description}" |
| 102 | + SemanticProperties.Hint="Icon representing the type of task . Tap to select"> |
101 | 103 | <VisualStateManager.VisualStateGroups> |
102 | 104 | <VisualStateGroup x:Name="CommonStates"> |
103 | 105 | <VisualState x:Name="Normal"> |
|
123 | 125 | FontSize="24" |
124 | 126 | VerticalOptions="Center" |
125 | 127 | HorizontalOptions="Center" |
126 | | - SemanticProperties.Description="{Binding Description}" |
127 | | - SemanticProperties.Hint="Icon representing the type of task . Tap to select" |
128 | 128 | TextColor="{AppThemeBinding Light={StaticResource DarkOnLightBackground},Dark={StaticResource LightOnDarkBackground}}"/> |
129 | 129 | <BoxView x:Name="SelectedIndicator" Color="{StaticResource Primary}" HeightRequest="4" HorizontalOptions="Fill" Grid.Row="1"/> |
130 | 130 | </Grid> |
|
166 | 166 | WidthRequest="44" |
167 | 167 | IsVisible="{Binding HasCompletedTasks}" |
168 | 168 | Command="{Binding CleanTasksCommand}" |
| 169 | + SemanticProperties.Description="Clean up" |
169 | 170 | /> |
170 | 171 | </Grid> |
171 | 172 | <VerticalStackLayout |
|
0 commit comments