Skip to content
Open
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
1 change: 1 addition & 0 deletions 10.0/Apps/DeveloperBalance/Pages/MainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
<controls:AddButton
IsEnabled="{Binding IsBusy, Converter={StaticResource InvertedBoolConverter}}"
Command="{Binding AddTaskCommand}"
ToolTipProperties.Text="Add task"
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 @@ -184,7 +184,8 @@
</ScrollView>

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

</ContentPage>
4 changes: 3 additions & 1 deletion 10.0/Apps/DeveloperBalance/Pages/ProjectListPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
</CollectionView>

<controls:AddButton
Command="{Binding AddProjectCommand}" />
Command="{Binding AddProjectCommand}"
SemanticProperties.Description="Add project"
ToolTipProperties.Text="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 @@ -96,7 +96,8 @@

<controls:AddButton
IsEnabled="{Binding IsBusy, Converter={StaticResource InvertedBoolConverter}}"
Command="{Binding AddTaskCommand}"
Command="{Binding AddTaskCommand}"
ToolTipProperties.Text="Add task"
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 @@ -184,7 +184,8 @@
</ScrollView>

<controls:AddButton Command="{Binding AddTaskCommand}"
SemanticProperties.Description="Add task" />
SemanticProperties.Description="Add task"
ToolTipProperties.Text="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 @@ -44,6 +44,7 @@

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