-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFormTeleport.xaml
19 lines (18 loc) · 1.29 KB
/
FormTeleport.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Window x:Class="SAR_Overlay.FormTeleport"
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:SAR_Overlay"
mc:Ignorable="d"
Title="Teleport" Height="604.366" Width="957" Topmost="True">
<Grid>
<Image x:Name="ImageMap" Margin="181,10,186,10" Source="Resources/Map.jpg" Stretch="Fill" Cursor="Cross" MouseLeftButtonDown="ImageMap_MouseLeftButtonDown"/>
<ListBox x:Name="ListBoxPredefinedLocations" Margin="0,41,10,10" HorizontalAlignment="Right" Width="171" MouseDoubleClick="ListBoxPredefinedLocations_MouseDoubleClick"/>
<Label Content="Predefined locations:" Margin="0,10,60,0" VerticalAlignment="Top" HorizontalAlignment="Right" Width="121"/>
<ListBox x:Name="ListBoxPlayerSelect" HorizontalAlignment="Left" Margin="10,41,0,10" Width="166" SelectedIndex="0">
<ListBoxItem Background="#FFE5FFEA" Content="Me" FontWeight="Bold"/>
</ListBox>
<Label Content="Player:" Margin="10,10,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Width="166"/>
</Grid>
</Window>