This commit is contained in:
Myx
2025-03-19 01:16:12 +01:00
commit 83a80b4b0f
28 changed files with 893 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<Page
x:Class="BeetleWire_UI.Pages.ConnectionsPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:BeetleWire_UI.Pages">
<Grid Padding="12">
<StackPanel>
<TextBlock Text="Saved Connections" FontSize="20" FontWeight="Bold" Margin="0,0,0,12"/>
<ListView x:Name="ConnectionsListView" Height="200"/>
</StackPanel>
</Grid>
</Page>