| 12345678910111213141516171819202122 |
- <wpf:ThemableWindow x:Class="PRSDesktop.GPSTrackerDetails"
- 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="GPS Tracker Details" Height="146.682" Width="590.175" Loaded="Window_Loaded">
- <Grid>
- <Button x:Name="OKButton" Content="OK" HorizontalAlignment="Left" Margin="420,0,0,10" Width="75"
- Click="OKButton_Click" Height="19" VerticalAlignment="Bottom" />
- <Button x:Name="CancelButton" Content="Cancel" HorizontalAlignment="Left" Margin="500,0,0,10"
- VerticalAlignment="Bottom" Width="75" RenderTransformOrigin="2.57,2.086" Click="CancelButton_Click" />
- <TextBox x:Name="DeviceID" HorizontalAlignment="Left" Height="23" Margin="124,14,0,0" TextWrapping="Wrap"
- Text="TextBox" VerticalAlignment="Top" Width="120" />
- <Label Content="Device ID" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Width="109" />
- <TextBox x:Name="Description" HorizontalAlignment="Left" Height="23" Margin="124,45,0,0" TextWrapping="Wrap"
- Text="TextBox" VerticalAlignment="Top" Width="451" />
- <Label Content="Description" HorizontalAlignment="Left" Margin="10,41,0,0" VerticalAlignment="Top" Width="109" />
- </Grid>
- </wpf:ThemableWindow>
|