-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSelectionDialog.xaml
18 lines (17 loc) · 1.12 KB
/
SelectionDialog.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Window x:Class="LocalLibrary.SelectionDialog"
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" mc:Ignorable="d"
Height="400" Width="400" Title="Select Match">
<Grid>
<StackPanel Background="{DynamicResource WindowBackgourndBrush}">
<TextBlock x:Name="SelectText" Margin="10" Foreground="{DynamicResource TextBrush}" TextWrapping="Wrap"/>
<ListBox x:Name="OptionsListBox" Margin="10" Height="200" Background="{DynamicResource WindowBackgourndBrush}"/>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="10" Background="{DynamicResource WindowBackgourndBrush}">
<Button Content="Select" Width="100" Margin="5" Click="SelectButton_Click"/>
<Button Content="None are correct" Width="200" Margin="5" Click="NoneButton_Click"/>
</StackPanel>
</StackPanel>
</Grid>
</Window>