Skip to content

Commit a6907eb

Browse files
committed
feat: Add deprecation notice
1 parent d5ef25b commit a6907eb

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

src/Pages/NewTabPage.xaml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
66
xmlns:local="using:Bluebird.Pages"
77
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
8+
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
89
NavigationCacheMode="Required"
910
mc:Ignorable="d">
1011

@@ -17,6 +18,7 @@
1718
<Grid.RowDefinitions>
1819
<RowDefinition Height="Auto" />
1920
<RowDefinition Height="Auto" />
21+
<RowDefinition Height="Auto" />
2022
</Grid.RowDefinitions>
2123
<Grid
2224
Grid.Row="0"
@@ -51,7 +53,7 @@
5153
x:Name="UrlBox"
5254
x:Uid="UrlBox"
5355
Grid.Column="0"
54-
Width="400"
56+
Width="500"
5557
IsSpellCheckEnabled="False"
5658
KeyDown="UrlBox_KeyDown"
5759
Loaded="UrlBox_Loaded"
@@ -65,6 +67,18 @@
6567
Content="" />
6668
</Grid>
6769
</Grid>
70+
<muxc:InfoBar
71+
Title="Warning"
72+
Grid.Row="2"
73+
VerticalAlignment="Bottom"
74+
IsClosable="False"
75+
IsOpen="True"
76+
Message="Bluebird is being deprecated and replaced by Horizon"
77+
Severity="Warning">
78+
<muxc:InfoBar.ActionButton>
79+
<HyperlinkButton Content="Get Horizon" NavigateUri="ms-windows-store://pdp/?productid=9PFS0VXCD5SR" />
80+
</muxc:InfoBar.ActionButton>
81+
</muxc:InfoBar>
6882
<!--<ListView
6983
x:Name="UserFavoritesListView"
7084
MaxWidth="450"
@@ -96,6 +110,5 @@
96110
</ListView.ItemsPanel>
97111
</ListView>-->
98112
</Grid>
99-
100113
</Grid>
101114
</Page>

src/Pages/SettingsPage.xaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,18 @@
3434
x:Uid="Settings"
3535
Margin="0,24,0,0"
3636
Style="{StaticResource TitleTextBlockStyle}" />
37+
<muxc:InfoBar
38+
Title="Warning"
39+
Grid.Row="2"
40+
VerticalAlignment="Bottom"
41+
IsClosable="False"
42+
IsOpen="True"
43+
Message="Bluebird is being deprecated and replaced by Horizon"
44+
Severity="Warning">
45+
<muxc:InfoBar.ActionButton>
46+
<HyperlinkButton Content="Get Horizon" NavigateUri="ms-windows-store://pdp/?productid=9PFS0VXCD5SR" />
47+
</muxc:InfoBar.ActionButton>
48+
</muxc:InfoBar>
3749
<!-- General -->
3850
<TextBlock Style="{StaticResource SettingsSectionHeaderTextBlockStyle}" Text="General" />
3951
<toolkitc:SettingsCard Header="Set as default">

0 commit comments

Comments
 (0)