-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueryDialog.xaml
23 lines (23 loc) · 1.3 KB
/
QueryDialog.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Window x:Class="Hbo.Sheepish.QueryDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Sheepish Queries" SizeToContent="WidthAndHeight">
<StackPanel>
<GroupBox Header="Primary Query" HorizontalAlignment="Stretch" Margin="6,2" Padding="0,10">
<DockPanel>
<ComboBox x:Name="PrimaryScopeSelect" DockPanel.Dock="Left" HorizontalAlignment="Left" Margin="10, 0" VerticalAlignment="Top" MinWidth="120"/>
<TextBox x:Name="PrimaryQueryBox" Margin="10,0" MinWidth="180"></TextBox>
</DockPanel>
</GroupBox>
<GroupBox Header="Alternate Query" HorizontalAlignment="Stretch" Margin="6,2" Padding="0,10">
<DockPanel>
<ComboBox x:Name="SecondaryScopeSelect" DockPanel.Dock="Left" HorizontalAlignment="Left" Margin="10,0" VerticalAlignment="Top" MinWidth="120"/>
<TextBox x:Name="SecondaryQueryBox" Margin="10,0" MinWidth="180"></TextBox>
</DockPanel>
</GroupBox>
<StackPanel Margin="6,2" HorizontalAlignment="Right" Orientation="Horizontal">
<Button Margin="10,10,0,5" Padding="3" Click="_OnSaveClicked">Save Changes</Button>
<Button Margin="10,10,0,5" Padding="3" Click="_OnCancelClicked">Cancel</Button>
</StackPanel>
</StackPanel>
</Window>