AddEditStafPage.xaml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <Page x:Class="Exam19.Pages.AddEditStafPage"
  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:Exam19.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="AddEditStafPage" Background="White">
  10. <Grid>
  11. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center"
  12. VerticalAlignment="Center">
  13. <StackPanel HorizontalAlignment="Center"
  14. VerticalAlignment="Center">
  15. <StackPanel Orientation="Horizontal">
  16. <TextBlock Text="Фамилия "></TextBlock>
  17. <TextBox Width="186" x:Name="TBoxTitle"></TextBox>
  18. </StackPanel>
  19. <StackPanel Orientation="Horizontal">
  20. <TextBlock Text="Имя "></TextBlock>
  21. <TextBox Width="196" x:Name="TBoxCost"></TextBox>
  22. </StackPanel>
  23. <StackPanel Orientation="Horizontal">
  24. <TextBlock Text="Отчество " Width="53"></TextBlock>
  25. <TextBox Width="188" x:Name="TBoxDuration"/>
  26. </StackPanel>
  27. <StackPanel Orientation="Horizontal">
  28. <TextBlock Text="Оклад "></TextBlock>
  29. <TextBox Width="148" x:Name="TBoxDescription"
  30. TextWrapping="Wrap" Height="21"></TextBox>
  31. </StackPanel>
  32. <StackPanel Orientation="Horizontal">
  33. <TextBlock Text="Отработанное время"></TextBlock>
  34. <TextBox Width="151" x:Name="TBoxDiscount"></TextBox>
  35. </StackPanel>
  36. </StackPanel>
  37. <StackPanel VerticalAlignment="Center">
  38. <StackPanel HorizontalAlignment="Center"
  39. VerticalAlignment="Center" Grid.Column="1"/>
  40. </StackPanel>
  41. </StackPanel>
  42. <Button Margin="555,400,45,20" x:Name="BtnSave" Click="BtnSave_Click"
  43. Background="#ffd6ff" Content="Сохранить"/>
  44. </Grid>
  45. </Page>