123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <wpf:ThemableWindow x:Class="PRSDesktop.Forms.LocationForm"
- 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:wpf="clr-namespace:InABox.Wpf;assembly=InABox.Wpf"
- mc:Ignorable="d"
- Title="Item Location" Height="211.2" Width="463.2">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="90" />
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="100" />
- <ColumnDefinition Width="50" />
- <ColumnDefinition Width="50" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="*" />
- <RowDefinition Height="*" />
- <RowDefinition Height="*" />
- <RowDefinition Height="45" />
- </Grid.RowDefinitions>
- <Label Grid.Row="0" Grid.Column="0" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10"
- Content="Address:" />
- <TextBox Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="3" VerticalAlignment="Center"
- HorizontalAlignment="Stretch" VerticalContentAlignment="Center" Margin="10" Height="25"
- x:Name="Address" />
- <Button Grid.Row="0" Grid.Column="4" HorizontalAlignment="Stretch" VerticalAlignment="Center" Margin="10"
- Height="25" x:Name="LookupButton" Content=".." />
- <Label Grid.Row="1" Grid.Column="0" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10"
- Content="Latitude:" />
- <TextBox Grid.Row="1" Grid.Column="1" VerticalAlignment="Center" HorizontalAlignment="Stretch" Margin="10"
- Height="25" x:Name="Latitude" VerticalContentAlignment="Center" />
- <Label Grid.Row="2" Grid.Column="0" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10"
- Content="Longitude:" />
- <TextBox Grid.Row="2" Grid.Column="1" VerticalAlignment="Center" HorizontalAlignment="Stretch" Margin="10"
- Height="25" x:Name="Longitude" VerticalContentAlignment="Center" />
- <Button Grid.Row="3" Grid.Column="2" Margin="10" Content="OK" x:Name="OKButton" Click="OKButton_Click" />
- <Button Grid.Row="3" Grid.Column="3" Grid.ColumnSpan="2" Margin="10" Content="Cancel" x:Name="CancelButton"
- Click="CancelButton_Click" />
- </Grid>
- </wpf:ThemableWindow>
|