12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <Page x:Class="Exam19.Pages.AddEditStafPage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:Exam19.Pages"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="AddEditStafPage" Background="White">
- <Grid>
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Center"
- VerticalAlignment="Center">
- <StackPanel HorizontalAlignment="Center"
- VerticalAlignment="Center">
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="Фамилия "></TextBlock>
- <TextBox Width="186" x:Name="TBoxTitle"></TextBox>
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="Имя "></TextBlock>
- <TextBox Width="196" x:Name="TBoxCost"></TextBox>
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="Отчество " Width="53"></TextBlock>
- <TextBox Width="188" x:Name="TBoxDuration"/>
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="Оклад "></TextBlock>
- <TextBox Width="148" x:Name="TBoxDescription"
- TextWrapping="Wrap" Height="21"></TextBox>
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="Отработанное время"></TextBlock>
- <TextBox Width="151" x:Name="TBoxDiscount"></TextBox>
- </StackPanel>
- </StackPanel>
- <StackPanel VerticalAlignment="Center">
- <StackPanel HorizontalAlignment="Center"
- VerticalAlignment="Center" Grid.Column="1"/>
- </StackPanel>
- </StackPanel>
- <Button Margin="555,400,45,20" x:Name="BtnSave" Click="BtnSave_Click"
- Background="#ffd6ff" Content="Сохранить"/>
- </Grid>
- </Page>
|