Skip to content

Commit

Permalink
Added tooltips in Requests page (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo-Peyronnet committed May 19, 2024
1 parent 0f41bf7 commit 98794d5
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions InternetTest/InternetTest/Pages/RequestsPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,11 @@
FontFamily="../Fonts/#FluentSystemIcons-Regular"
FontWeight="ExtraBold"
Foreground="{DynamicResource Foreground1}"
Style="{DynamicResource PrimaryButton}" />
Style="{DynamicResource PrimaryButton}">
<Button.ToolTip>
<ToolTip Content="{x:Static lang:Resources.Save}" />
</Button.ToolTip>
</Button>
<Button
x:Name="CopyBtn"
Height="20"
Expand All @@ -214,7 +218,11 @@
FontFamily="../Fonts/#FluentSystemIcons-Regular"
FontWeight="ExtraBold"
Foreground="{DynamicResource Foreground1}"
Style="{DynamicResource PrimaryButton}" />
Style="{DynamicResource PrimaryButton}">
<Button.ToolTip>
<ToolTip Content="{x:Static lang:Resources.Copy}" />
</Button.ToolTip>
</Button>
</StackPanel>
<ScrollViewer
Grid.Row="1"
Expand Down Expand Up @@ -277,7 +285,11 @@
FontFamily="../Fonts/#FluentSystemIcons-Regular"
FontWeight="ExtraBold"
Foreground="{DynamicResource Foreground1}"
Style="{DynamicResource PrimaryButton}" />
Style="{DynamicResource PrimaryButton}">
<Button.ToolTip>
<ToolTip Content="{x:Static lang:Resources.Copy}" />
</Button.ToolTip>
</Button>
</StackPanel>
<StackPanel x:Name="HeadersPanel" Grid.Row="1" />
</Grid>
Expand Down

0 comments on commit 98794d5

Please sign in to comment.