StartWorkPage.xaml 1.1 KB

1234567891011121314151617181920212223
  1. <Page x:Class="FillingColumn.StartWorkPage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:FillingColumn"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Заправочная колонка - Начало работы">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition/>
  13. <RowDefinition/>
  14. </Grid.RowDefinitions>
  15. <StackPanel Orientation="Horizontal" VerticalAlignment="Bottom" HorizontalAlignment="Center">
  16. <TextBlock Text="STATION_ID АЗС:" VerticalAlignment="Center"></TextBlock>
  17. <TextBox x:Name="TxtIDStation" Margin="5" Width="100" Height="20"></TextBox>
  18. </StackPanel>
  19. <Button x:Name="BtnConnectToStation" Content="Начать работу" VerticalAlignment="Top" Grid.Row="1" Margin="300,70,300,70" Click="BtnConnectToStation_Click"></Button>
  20. </Grid>
  21. </Page>