Files
Biblotek/Bokhantarare/BookSelectionPage.xaml
Zacharias 3c44c8dc8a Chaged colors
Added handelrs for networking exceptions
Made Book selector a bit bigger
Fixed issue with publishing date
2025-02-04 09:03:10 +01:00

20 lines
920 B
XML

<Window x:Class="Bokhantarare.BookSelectionPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Bokhantarare"
mc:Ignorable="d"
Title="BookSelectionPage" Height="100" Width="180">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Text="Select the book you wish to add" Margin="0,0,0,5"/>
<ComboBox Grid.Row="1" Name="BookSelector"></ComboBox>
<Button Grid.Row="2" Content="Ok" Click="ButtonBase_OnClick"></Button>
</Grid>
</Window>