Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion 10.0/Apps/DeveloperBalance/Pages/MainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@

<controls:AddButton
IsEnabled="{Binding IsBusy, Converter={StaticResource InvertedBoolConverter}}"
Command="{Binding AddTaskCommand}" />
Command="{Binding AddTaskCommand}"
SemanticProperties.Description="Add task" />
</Grid>
</ContentPage>
3 changes: 2 additions & 1 deletion 10.0/Apps/DeveloperBalance/Pages/ProjectDetailPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@
</VerticalStackLayout>
</ScrollView>

<controls:AddButton Command="{Binding AddTaskCommand}" />
<controls:AddButton Command="{Binding AddTaskCommand}"
SemanticProperties.Description="Add task" />
</Grid>

</ContentPage>
3 changes: 2 additions & 1 deletion 10.0/Apps/DeveloperBalance/Pages/ProjectListPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
</ScrollView>

<controls:AddButton
Command="{Binding AddProjectCommand}" />
Command="{Binding AddProjectCommand}"
SemanticProperties.Description="Add project" />
</Grid>
</ContentPage>
3 changes: 2 additions & 1 deletion 9.0/Apps/DeveloperBalance/Pages/MainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@

<controls:AddButton
IsEnabled="{Binding IsBusy, Converter={StaticResource InvertedBoolConverter}}"
Command="{Binding AddTaskCommand}" />
Command="{Binding AddTaskCommand}"
SemanticProperties.Description="Add task" />
</Grid>
</ContentPage>
3 changes: 2 additions & 1 deletion 9.0/Apps/DeveloperBalance/Pages/ProjectDetailPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@
</VerticalStackLayout>
</ScrollView>

<controls:AddButton Command="{Binding AddTaskCommand}" />
<controls:AddButton Command="{Binding AddTaskCommand}"
SemanticProperties.Description="Add task" />
</Grid>

</ContentPage>
3 changes: 2 additions & 1 deletion 9.0/Apps/DeveloperBalance/Pages/ProjectListPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
</CollectionView>

<controls:AddButton
Command="{Binding AddProjectCommand}" />
Command="{Binding AddProjectCommand}"
SemanticProperties.Description="Add project" />
</Grid>
</ContentPage>
Loading