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.
|
|
|
|
<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"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
Title="MainWindow" Height="450" Width="800">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="9*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="2*"/>
|
|
|
|
|
<ColumnDefinition Width="8*"/>
|
|
|
|
|
<ColumnDefinition Width="2*"/>
|
|
|
|
|
<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"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Window>
|