Skip to content

Commit 7c9e57f

Browse files
Added test page
A reference to `Microsoft.Toolkit.Win32.UI.XamlApplication` is needed in order for the stuff to work!!!
1 parent a069aab commit 7c9e57f

File tree

3 files changed

+38
-0
lines changed

3 files changed

+38
-0
lines changed

VBAudioRouter.UWP/BlankPage1.xaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<Page
2+
x:Class="VBAudioRouter.BlankPage1"
3+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5+
xmlns:local="using:VBAudioRouter"
6+
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
7+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
8+
mc:Ignorable="d">
9+
10+
<Grid>
11+
<Grid.ColumnDefinitions>
12+
<ColumnDefinition Width="*" />
13+
<ColumnDefinition Width="10" />
14+
<ColumnDefinition Width="*" />
15+
</Grid.ColumnDefinitions>
16+
<Border Background="#3B3C3D" CornerRadius="10" Grid.Column="0" />
17+
<Border Background="#3B3C3D" CornerRadius="10" Grid.Column="2" />
18+
</Grid>
19+
</Page>

VBAudioRouter.UWP/BlankPage1.xaml.vb

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
' The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=234238
2+
3+
''' <summary>
4+
''' An empty page that can be used on its own or navigated to within a Frame.
5+
''' </summary>
6+
Public NotInheritable Class BlankPage1
7+
Inherits Page
8+
9+
End Class

VBAudioRouter.UWP/VBAudioRouter.UWP.vbproj

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,9 @@
156156
<Compile Include="AudioControlPage.xaml.vb">
157157
<DependentUpon>AudioControlPage.xaml</DependentUpon>
158158
</Compile>
159+
<Compile Include="BlankPage1.xaml.vb">
160+
<DependentUpon>BlankPage1.xaml</DependentUpon>
161+
</Compile>
159162
<Compile Include="Controls\AudioSessionControl.xaml.vb">
160163
<DependentUpon>AudioSessionControl.xaml</DependentUpon>
161164
</Compile>
@@ -309,6 +312,10 @@
309312
<SubType>Designer</SubType>
310313
<Generator>MSBuild:Compile</Generator>
311314
</Page>
315+
<Page Include="BlankPage1.xaml">
316+
<SubType>Designer</SubType>
317+
<Generator>MSBuild:Compile</Generator>
318+
</Page>
312319
<Page Include="Controls\AudioSessionControl.xaml">
313320
<SubType>Designer</SubType>
314321
<Generator>MSBuild:Compile</Generator>
@@ -428,6 +435,9 @@
428435
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
429436
<Version>6.2.13</Version>
430437
</PackageReference>
438+
<PackageReference Include="Microsoft.Toolkit.Win32.UI.XamlApplication">
439+
<Version>6.1.3</Version>
440+
</PackageReference>
431441
<PackageReference Include="Microsoft.Toolkit.Uwp.UI.Controls">
432442
<Version>7.1.2</Version>
433443
</PackageReference>

0 commit comments

Comments
 (0)