You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
2.2 KiB

<Window x:Class="MapFinder.MainWindow"
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:MapFinder" xmlns:control="clr-namespace:MapFinder.Control"
mc:Ignorable="d"
Title="Map Finder" Height="450" Width="800"
Loaded="Window_Loaded">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="150"/>
<ColumnDefinition Width="300"/>
<ColumnDefinition Width="100"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0"
HorizontalAlignment="Right"
VerticalAlignment="Center">
검색어:
</TextBlock>
<TextBox x:Name="tbQuery"
Background="LightGray"
Grid.Column="1"
Margin="5,0,5,0"
VerticalAlignment="Center"/>
<Button x:Name="btnFind"
IsDefault="True"
VerticalAlignment="Center"
Grid.Column="2"
Content="검색"
Click="btnFind_Click"/>
<ListBox x:Name="lbxFound"
Background="Cyan"
Grid.Row="1"
SelectionChanged="lbxFound_SelectionChanged"/>
<!--<WebBrowser x:Name="wbMain"
Source="https://map.kakao.com"
Grid.Row="1"
Grid.Column="1"
Grid.ColumnSpan="3"/>-->
<!--<WindowsFormsHost Name="wfhWebBrowser"
Grid.Row="1"
Grid.Column="1"
Grid.ColumnSpan="3"/>-->
<control:CustomWebBrowser x:Name="wbMain"
Grid.Row="1"
Grid.Column="1"
Grid.ColumnSpan="3"/>
</Grid>
</Window>