GPSTrackerDetails.xaml 1.6 KB

12345678910111213141516171819202122
  1. <wpf:ThemableWindow x:Class="PRSDesktop.GPSTrackerDetails"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:wpf="clr-namespace:InABox.Wpf;assembly=InABox.Wpf"
  7. mc:Ignorable="d"
  8. Title="GPS Tracker Details" Height="146.682" Width="590.175" Loaded="Window_Loaded">
  9. <Grid>
  10. <Button x:Name="OKButton" Content="OK" HorizontalAlignment="Left" Margin="420,0,0,10" Width="75"
  11. Click="OKButton_Click" Height="19" VerticalAlignment="Bottom" />
  12. <Button x:Name="CancelButton" Content="Cancel" HorizontalAlignment="Left" Margin="500,0,0,10"
  13. VerticalAlignment="Bottom" Width="75" RenderTransformOrigin="2.57,2.086" Click="CancelButton_Click" />
  14. <TextBox x:Name="DeviceID" HorizontalAlignment="Left" Height="23" Margin="124,14,0,0" TextWrapping="Wrap"
  15. Text="TextBox" VerticalAlignment="Top" Width="120" />
  16. <Label Content="Device ID" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Width="109" />
  17. <TextBox x:Name="Description" HorizontalAlignment="Left" Height="23" Margin="124,45,0,0" TextWrapping="Wrap"
  18. Text="TextBox" VerticalAlignment="Top" Width="451" />
  19. <Label Content="Description" HorizontalAlignment="Left" Margin="10,41,0,0" VerticalAlignment="Top" Width="109" />
  20. </Grid>
  21. </wpf:ThemableWindow>