ux: add some tooltips to checkboxes

This commit is contained in:
leo 2024-12-17 11:24:59 +08:00
parent c768b1750e
commit 1c345df37d
No known key found for this signature in database
8 changed files with 29 additions and 16 deletions

View file

@ -99,11 +99,13 @@
<CheckBox Grid.Row="5" Grid.Column="1"
Content="{DynamicResource Text.Pull.NoTags}"
IsChecked="{Binding NoTags, Mode=TwoWay}"/>
IsChecked="{Binding NoTags, Mode=TwoWay}"
ToolTip.Tip="--no-tags"/>
<CheckBox Grid.Row="6" Grid.Column="1"
Content="{DynamicResource Text.Pull.UseRebase}"
IsChecked="{Binding UseRebase, Mode=TwoWay}"/>
IsChecked="{Binding UseRebase, Mode=TwoWay}"
ToolTip.Tip="--rebase"/>
</Grid>
</StackPanel>
</UserControl>