|
54 | 54 | <BindableLayout.ItemTemplate> |
55 | 55 | <DataTemplate x:DataType="models:Category"> |
56 | 56 | <Grid ColumnSpacing="{StaticResource LayoutSpacing}" ColumnDefinitions="4*,3*,30,Auto"> |
57 | | - <Entry Text="{Binding Title}" Grid.Column="0" SemanticProperties.Description="Title" /> |
| 57 | + <Entry Text="{Binding Title}" SemanticProperties.Description="{Binding Title}" Grid.Column="0" /> |
58 | 58 | <Entry Text="{Binding Color}" Grid.Column="1" x:Name="ColorEntry" |
59 | 59 | SemanticProperties.Description="Color" |
60 | 60 | SemanticProperties.Hint="Category color in HEX format"> |
|
75 | 75 | Background="Transparent" |
76 | 76 | Command="{Binding DeleteCategoryCommand, Source={RelativeSource AncestorType={x:Type pageModels:ManageMetaPageModel}}, x:DataType=pageModels:ManageMetaPageModel}" CommandParameter="{Binding .}" |
77 | 77 | Grid.Column="3" |
78 | | - SemanticProperties.Description="Delete" /> |
| 78 | + SemanticProperties.Description="Delete Category" /> |
79 | 79 | </Grid> |
80 | 80 | </DataTemplate> |
81 | 81 | </BindableLayout.ItemTemplate> |
|
96 | 96 | <BindableLayout.ItemTemplate> |
97 | 97 | <DataTemplate x:DataType="models:Tag"> |
98 | 98 | <Grid ColumnSpacing="{StaticResource LayoutSpacing}" ColumnDefinitions="4*,3*,30,Auto"> |
99 | | - <Entry Text="{Binding Title}" Grid.Column="0" SemanticProperties.Description="Title" /> |
| 99 | + <Entry Text="{Binding Title}" Grid.Column="0" SemanticProperties.Description="{Binding Title}" /> |
100 | 100 | <Entry Text="{Binding Color}" Grid.Column="1" x:Name="ColorEntry" |
101 | 101 | SemanticProperties.Description="Color" |
102 | 102 | SemanticProperties.Hint="Tag color in HEX format"> |
|
114 | 114 |
|
115 | 115 | <Button |
116 | 116 | ImageSource="{StaticResource IconDelete}" |
| 117 | + SemanticProperties.Description="Delete Tag" |
117 | 118 | Background="Transparent" |
118 | 119 | Command="{Binding DeleteTagCommand, Source={RelativeSource AncestorType={x:Type pageModels:ManageMetaPageModel}}, x:DataType=pageModels:ManageMetaPageModel}" CommandParameter="{Binding .}" |
119 | 120 | Grid.Column="3"/> |
|
0 commit comments