Initial
This commit is contained in:
19
Bokhantarare/BookSelectionPage.xaml
Normal file
19
Bokhantarare/BookSelectionPage.xaml
Normal file
@@ -0,0 +1,19 @@
|
||||
<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="90" 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>
|
||||
Reference in New Issue
Block a user