15 lines
966 B
XML
15 lines
966 B
XML
<Window x:Class="GisDevelop_Exp.QueryResultWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:GisDevelop_Exp"
|
|
mc:Ignorable="d"
|
|
Title="QueryResultWindow" Height="450" Width="319"
|
|
Loaded="QueryResultWindow_OnLoaded">
|
|
<Canvas>
|
|
<ComboBox x:Name="comboBoxSelectionCount" Canvas.Left="23" Canvas.Top="21" Width="273" HorizontalAlignment="Left" VerticalAlignment="Center" SelectionChanged="ComboBoxSelectionCount_OnSelectionChanged"/>
|
|
<DataGrid x:Name="dataGridResult" Height="356" Width="276" d:ItemsSource="{d:SampleData ItemCount=5}" HorizontalAlignment="Center" Canvas.Top="58" VerticalAlignment="Top" Canvas.Left="20"/>
|
|
</Canvas>
|
|
</Window>
|