Skip to content

Commit

Permalink
Added tooltips in IP Config page (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo-Peyronnet committed May 19, 2024
1 parent 1a32b47 commit 98f10eb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
7 changes: 6 additions & 1 deletion InternetTest/InternetTest/UserControls/DnsRecordItem.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:lang="clr-namespace:InternetTest.Properties"
xmlns:local="clr-namespace:InternetTest.UserControls"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
FontFamily="../Fonts/#Hauora"
Expand Down Expand Up @@ -48,7 +49,11 @@
Content=""
FontFamily="../Fonts/#FluentSystemIcons-Regular"
Foreground="{DynamicResource Foreground1}"
Style="{DynamicResource DefaultButton}" />
Style="{DynamicResource DefaultButton}">
<Button.ToolTip>
<ToolTip Content="{x:Static lang:Resources.Copy}" />
</Button.ToolTip>
</Button>

</Grid>
</Border>
Expand Down
12 changes: 10 additions & 2 deletions InternetTest/InternetTest/UserControls/IpConfigItem.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@
Content="&#xF32C;"
FontFamily="../Fonts/#FluentSystemIcons-Regular"
Foreground="{DynamicResource Foreground1}"
Style="{DynamicResource DefaultButton}" />
Style="{DynamicResource DefaultButton}">
<Button.ToolTip>
<ToolTip Content="{x:Static lang:Resources.Copy}" />
</Button.ToolTip>
</Button>
<Button
x:Name="ExpanderBtn"
Grid.Column="1"
Expand All @@ -60,7 +64,11 @@
Content="&#xF2A4;"
FontFamily="../Fonts/#FluentSystemIcons-Regular"
Foreground="{DynamicResource Foreground1}"
Style="{DynamicResource DefaultButton}" />
Style="{DynamicResource DefaultButton}">
<Button.ToolTip>
<ToolTip Content="{x:Static lang:Resources.ExpandCollapse}" />
</Button.ToolTip>
</Button>
</StackPanel>
</Grid>
<Grid
Expand Down

0 comments on commit 98f10eb

Please sign in to comment.